I need to do something like this:
<ul><li>something</li></ul>
<div class='elm'>click me</div> <!-- no 1 -->
<ul><li>something</li></ul>
<div class='elm'>click me</div> <!-- no 2 -->
<ul><li>something</li></ul>
<div class='elm'>click me</div> <!-- no 3 -->
<ul><li>something</li></ul>
<div class='elm'>click me</div> <!-- no 4 -->
<ul><li>something</li></ul>
<div class='elm'>click me</div> <!-- no 5 -->
then using jquery
$(".elm").click(function(){
//some selector which returns the ul element which is just before this div element.
});
I need to select the ul element which is just before the div element which is clicked.
like if user clicks on div (# 4) then it should return the ul element which is just before the div (#4).