Esempi Traversing "in profondità"

 

Evidenzia:

 


 

 

Codice:

 

function test_add () {
$("#menu, #menu *,#altroMenu *").css("background-color",""); //reset dello sfondo
$("#menu").add("li").css("background-color","yellow");
}

function test_find () {
$("#menu, #menu *,#altroMenu *").css("background-color",""); //reset dello sfondo
$("#menu").find("li").css("background-color","yellow");
}

function test_children () {
$("#menu, #menu *,#altroMenu *").css("background-color",""); //reset dello sfondo
$("#menu").children("li").css("background-color","yellow");
}