Hi i have a hidden div which inside hold other divs
Example
<div style="display:none">
<div id="o-1">...<div>
<div>...<div>
<div>...<div>
<div id="o-2">...<div>
<div>...<div>
<div>...<div>
<div id="o-3">...<div>
<div>...<div>
<div>...<div>
</div>
I am trying to get the prevAll of div id="o-3" which id starts whith o- In the above example the prevAll of o-3 are o-2 and o-1
The problem is that because the wrapper div is hidden i can get the preAll
Any suggestions are welcome