Evidenzia:
function test_next () {
$("#menu, #menu *").css("background-color",""); //reset dello sfondo
$("#inizio").next("li").css("background-color","yellow");
}
function test_prev () {
$("#menu, #menu *").css("background-color",""); //reset dello sfondo
$("#inizio").prev("li").css("background-color","yellow");
}
function test_nextAll () {
$("#menu, #menu *").css("background-color",""); //reset dello sfondo
$("#inizio").nextAll("li").css("background-color","yellow");
}
function test_siblings () {
$("#menu, #menu *").css("background-color",""); //reset dello sfondo
$("#inizio").siblings("li").css("background-color","yellow");
}