user1110562
user1110562

Reputation: 423

jQuery cycle - previous button not working

Can someone see why my previous button is not working here?

$('#slideCycle').cycle({
     fx:     'fade', 
     timeout: 0, 
     next:   '#rightArrow', 
     prev:   '#leftArrow' 
});

<img src="/_images/left_arrow.jpg" id="leftArrow2">
<img src="/_images/right_arrow.jpg" id="rightArrow">

Also the cursor: pointer doesn't seem to be working on the left arrow.

Upvotes: 0

Views: 68

Answers (1)

s_cicero
s_cicero

Reputation: 155

It looks like your image is covering it, try positioning it differently, or simply setting a higher z-index on the arrows.

Upvotes: 1

Related Questions