I am using the cycle all plugin, and I am wanting to make the site
work in IE6. Of course it works in every other browser. But IE6 it
does not work at all, and I get the "object doesn't support this
property or method" error, for the following code:
$(function() {
// run the code in the markup!
$('#s4').before('<div id="nav" class="nav">').cycle({
fx: 'fade',
speed: '2000',
timeout: 7000,
pager: '#nav',
pause: 1
});
});
Why would IE6 be throwing an error? And what would be causing cycle
all to not work at all?