Can't get jQuery and IE to be friends
Posted
by Matthew
on Stack Overflow
See other posts from Stack Overflow
or by Matthew
Published on 2010-06-05T20:37:07Z
Indexed on
2010/06/05
20:42 UTC
Read the original article
Hit count: 156
Using jQuery and the Cycle plugin. Runs flawless in Safari, Chrome, Firefox, and the latest version of Opera. Won't run in older versions of Opera, and of course, IE. I know its running Java, because its picking up the rollovers.
This is driving me batty. Hopefully its something simple. Here's the code...
$(document).ready(function() {
$("#slideshow").css("overflow", "hidden");
$("div#slides").cycle({
fx: 'scrollHorz',
speed: 'slow',
timeout: 0,
prev: '#prev',
next: '#next'
});
Really appreciate the help guys.
© Stack Overflow or respective owner