JQuery Traversing - Descendentes
//children()
$(document).ready(function(){
$("div").children();
});
//find()
$(document).ready(function(){
$("div").find("span");
});
naly moslih