jQuery, [DOM traversal], jQuery. , ,
$("#images")
.find("li")
.filter($("a[href='http://www.exmaple.com/index.html']"))
.fadeIn()
.delay(10000)
.fadeOut();
filter <li> , <a>, , :
; , , .
, , . <li> s: $("#images li")
has, , , : .has("a[href='http://www.exmaple.com/index.html']")
, , .
$("#images li")
.has("a[href='http://www.exmaple.com/index.html']")
.fadeIn()
.delay(10000)
.fadeOut();
, , filter . , , . has, .
$("#images li").filter(function() {
return $(this)
.find("a[href='http://www.exmaple.com/index.html']")
.length > 0;
})
.fadeIn();