I have the following code:
$(document).ready(function()
{
if (!jQuery.browser.msie)
{
$('.banner').cycle({
fx: 'fade',
speed: 1000,
timeout: 10000,
random: 1
});
}
else {
$('.banner').cycle({
fx: 'turnUp',
speed: 1000,
timeout: 10000,
random: 1
});
}
});
However the .banner does not cycle in IE. If I change the Fx to fade though it will work?? Any ideas why I can't have a different effect, the IF and ELSE is defo working, just seems to break when I have a different effect on the IE one.
Thanks,