Reputation: 1387
I'm having trouble making the div buttons on this simple slideshow to work. I've used jQuery and I've tried to stay away from things that don't work in IE (e.g. split).
The IE debugger shows that the div with the id "next" is properly placed, and i've found no errors in my javascript. Still, the div doesn't have the click event binded and the css style of cursor: pointer isn't applied.
How should I solve this problem? Many thanks.
Upvotes: 0
Views: 166
Reputation: 1387
Shadow Wizard's comment was spot on. After realizing that this is a z-index bug, i've checked the squish-the-internet-explorer-z-index-bug link for clues but that didn't work for me so, since i was under time pressure, i've decided to replace the <img>
tag with a div and set background on it.
Upvotes: 1