vote up 0 vote down star

I've both the UI Tabs & jcarousel plugin in my webpage, all works good in all browsers apart from IE where i assume there's some sort of confliction as if i take out the jcarousel JS then the tabs works fine.

Has anyone got any suggestion on this issue or how to fix it? Thanks

<script type="text/javascript">
$(document).ready(function() {

	$('#tabs > ul').tabs({ 
		fx: { opacity: 'toggle' } 
	});	

	$("#carousel").jCarouselLite({
		btnNext: ".prev",
		btnPrev: ".next",
		visible: 4,
	});

});
</script>
flag

3 Answers

vote up 0 vote down check

Found out is was simply the comma at the end of "visible: 4," needed to be taken out.

link|flag
vote up 0 vote down

Nise Code for jquery

$(function() {

$(".mouseWheel .jCarouselLite").jCarouselLite({ btnNext: ".mouseWheel .next", btnPrev: ".mouseWheel .prev", easing: "easeinout", visible: 4, mouseWheel: true });

});

$(function() { $(".anyClass2").jCarouselLite({ btnNext: ".next2", btnPrev: ".prev2" }); });

link|flag
vote up 0 vote down

I put the above javascript into http://javascriptlint.com/online_lint.php - here's a snippet of the results

10                  btnPrev: ".next",
11                  visible: 4,
12          });
    ========^
    warning: trailing comma is not legal in ECMA-262 object initializers
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.