Reputation: 13333
I have a jquery slider which is working good in Firefox and Chrome. But its not working on IE. Here is my code
<script type="application/x-javascript">
<!--
jQuery(function(){
jQuery("#featured > ul").tabs({fx: {opacity: 'toggle',}}).tabs("rotate", 5000, true);
jQuery("#contactus, #quote").fancybox({
'width' : '75%',
'height' : '100%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
});
//-->
</script>
Any help and suggestions will be highly appreciable.
Upvotes: 0
Views: 1200
Reputation: 36
Internet Explorer does not have trailing commas when defining object literals. I have not tested it as I don't have the browser here, but have you tried removing the extra comma after opacity : 'toggle'
?
Upvotes: 2