jquery - Can't select direct parent element -
jquery - Can't select direct parent element - i have html page globally exists of div , section , , ul elements (of course of study more, common) now in 4th list on page (e.g. below in bold) <body> <div> <header> <ul id="firstlist"> <li> [..] <section> <ul id="secondlist"> [..] <section> <ul id="thirdlist"> [..] <section> <ul id="fourthlist"> <li><a>test 1</a></li> <li><a>test 2</a></li> <li><a>test 3</a></li> </ul> [..] the thing that, when clicks on test, want loop through list-items position of click in list (it there items before or after) herefore have following $("a").click(function(event){ [..] var parentel = $(this).parents('ul').filter(":first").tagname; alert($(parentel).attr("id...