I'm not a very skilled javascript programmer, so i don't know how to do this the correct way.
I have this script
<script type="text/javascript">
jQuery(function() {
jQuery("#brand-select").jMyCarousel({
visible: '100%' ,
auto: true,
speed: 1000,
});
});
</script>
Which i working properly, but i want to change the property 'auto: true' to 'auto: false' when the mouse is over the ul element 'brand-select'
I want to do something like this (pseudo-code)
jQuery('#brand-select').mouseover(function() {
brand-select-carousel.auto = false;
});
Does anybody know how to do this?