<span>This is the span I want to select</span>
<div>something here</div>
<a id="start"></a>
Suppose can only access $('#start'),
I tried $('#start').prev('span') but not working.
|
|
|
|
|
|
|
Note: you can't use prev() as it only gets the previous tag, and span, from the anchor tag is not the previous is the previous of the previous from jQuery Documentation
the filter is to filter if the previous tag contains more than one, like:
to get the span you use:
|
||||||||||
|
|
|
Weird, it seems that
|
||
|
|