Reputation: 350
I have this site: http://telya.wee.co.il that has some jquery affects on the main page.
All works fine on FF, chrome, IE8 but it looks horrible and doesn't work on IE7.
Any idea ?
Upvotes: 1
Views: 712
Reputation: 196296
Try removing the surplus comma (,) from the
$('#imagesFade').cycle({
fx: 'scrollRight',
speed: 200,
timeout: 3000,
next: '#next',
prev: '#prev' , /* <-- this comma should be removed */
});
when i removed and re-run the code edited the slideshow worked just fine (and whatever follows should, as well)
Upvotes: 2
Reputation: 15417
First thing that catches my eye is the extra comma after '#prev':
$('#imagesFade').cycle({
fx: 'scrollRight',
speed: 200,
timeout: 3000,
next: '#next',
prev: '#prev' ,
});
IEs are picky about those.
Upvotes: 2