Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
Could You show what parameters jMyCarousel accept? Without callback support it is impossible to change existing object parameters. – Adam Dec 19 '10 at 15:37
1  
Share the link of the jMyCarousel plugin, maybe we can help you. – Alex Figueiredo Dec 21 '11 at 6:47

2 Answers

I have checked your plugin, as the 'auto' property is not exposed to public, so if you want to change this value, you need to modify this plugin.

Add the a public method before 'return this.each(...)' in flie jMyCarousel.js

this.setAuto = function(value){
    if(typeof value != 'boolean' || value == null){
        return;
    o.auto = value;
};

Then you could get instance of jMyCarousel in the constructor and then use it's public method:

var jMyCarouselInstance;
jQuery(function() {  
        jMyCarouselInstance = jQuery("#brand-select").jMyCarousel({  
            visible: '100%' ,
            auto: true,
            speed: 1000,
        });
});
...
jMyCarouselInstance.setAuto(false);
share|improve this answer

If you want to get or set the property of an element, use the 'attr' api of jquery: http://api.jquery.com/attr/

jQuery('#brand-select').mouseover(function() {
    jQuery(yourSelector).attr('auto', false);
});
share|improve this answer
1  
I don't think that's the case. He obviously asked about a plugin, and the auto property isn't actually a attribute. – Alex Figueiredo Dec 21 '11 at 6:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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