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.

Today for the first time, I ran into a problem where variables were being mixed up with multiple instances of jQuery plug-ins.

A simple version of my plug-in can be viewed here: http://jsfiddle.net/jydzB/2/

I want to be able to simply create a timer in a plugin, and access the variable "myTimer" in another method within the plugin. In this case, to destroy it. However, I thought for sure that creating variables like I did below with "myTimer" made that variable available only in that class/plugin? Am I wrong? How do I use variables within a plugin? I know I could store them in $obj.data('',''), but that doesn't make sense to do that when you could simply store it in a var.

You will see that when you run the jsFiddle script, it doesn't destroy the timer.

Simple HTML

Write a line every five seconds... destroy it after 10:<br />
<hr />
<div id='myDiv' style='border: solid 1px #000;float:left;'></div>
<div id='myDiv2' style='border: solid 1px #f00;float:right;'></div>

jQuery Plugin

if (jQuery) (
    function (jQuery) {        
        var myTimer;            
        var methods = {
            init: function () {
                return this.each(function () {
                    var $obj = $(this);
                    var data = $obj.data('init');
                    if (!data) {
                        myTimer = setInterval(function(){
                            writeLine($obj)
                        }, 1000);
                        $obj.data('init', true);
                        $obj.data('cnt',0);
                    }
                });        
            },
            destroy: function () {
                var $obj = $(this);
                $obj.data('init', false);
                clearInterval(myTimer);
                $obj.append("Destroyed!");
            }
        };        
        $.fn.timeIt = function (method) {                   
            if (methods[method]) {
                return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
            } else if (typeof method === 'object' || !method) {
                return methods.init.apply(this, arguments);
            } else {
                $.error('Method ' + method + ' does not exist on jQuery.timeIt');
            }
        };
    }
)(jQuery);

$('#myDiv').timeIt();
$('#myDiv2').timeIt();

function writeLine(cObj) {
    cObj.data('cnt',cObj.data('cnt')+1);
    cObj.append("Another line written...(" + cObj.data('cnt') + ")<Br />");    
    if(cObj.data('cnt')>=10){
        cObj.timeIt('destroy');
    }        
}
share|improve this question

1 Answer

up vote 1 down vote accepted

I think usage of a variable scoped at that level is fine, aside from the fact that you're assigning the value of myTimer inside of your each (different context each time). If you remove the second wire-up ($('#myDiv2').timeIt();) it works like a champ. Storing the variable with the instance would probably be more appropriate.

share|improve this answer
Thanks. Can you explain 'storing it with the instance'? – Michael C. Gates Mar 10 '12 at 3:29
1  
Storing it with the instance would be (essentially) adding it to the $obj.data collection like so: $obj.data('pid', myTimer);. Then in the destroy method, clear it like so: clearInterval($obj.data('pid'));. Updated your fiddle. jsfiddle.net/jydzB/3 – pete Mar 10 '12 at 3:36
Great. I assumed .data wasnt intended for that, but it makes sense. Thanks! – Michael C. Gates Mar 10 '12 at 5:17

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.