I have this code:
<div class="window-compl">
<div class="window showincatalog showing">
<h2>Text1</h2>
</div>
<div class="window">
<h2>Text2</h2>
</div>
<div class="window showincatalog">
<h2>Text3</h2>
</div>
<div class="window showincatalog">
<h2>Text4</h2>
</div>
</div>
I use jquery selectors next() and prev() in this function:
function rotate(direction) {
var current = $('.showing');
if (direction==0)
var next = $('.showing').prev('.showincatalog');
else
var next = $('.showing').next('.showincatalog');
}
It works when all div tags have class showincatalog, but stops, when one of them not.
Would be great if someone knows why this is not working
update: I need select div with class "showincatalog" and Text3, but $('.showing').next('.showincatalog') return nothing.
$('.showing)should be$('.showing')missing single-quote ? – aSeptik Mar 25 '11 at 16:57