Reputation: 423
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
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