vote up 1 vote down star

In order to clean up my code i want to use sub-plugins within my actual jQuery plugin, but actually there is nothing happening. thx in advance

As an easy example, please take a look at the following code:

(function($){
    $.fn.funct = function() {
    	// so far it seems to run the code...
    	console.log('funct is running...');

    	return this.each(function(){
    		// ...but nothing is happening here
    		console.log('this.each is running...');
    		$(this).css('background', 'blue');
    	}
    } 
    $.fn.foo = function() {	
    	return this.each(function(){
    		console.log('plugin is running...');
    		$(this).funct();
    	});
    };
})(jQuery);
flag

78% accept rate

2 Answers

vote up 1 vote down check

At initial glance, it looks like you're not closing the first return properly.

$(this).css('background', 'blue');
        }

should be:

$(this).css('background', 'blue');
        });
link|flag
Wow, good catch! – Patrick McElhaney Aug 6 at 13:26
vote up 0 vote down

I would prefer to fire a custom event in one plugin and let the other plugin subscribe to that event. The you do not have the dependency.

See my answer here for more info regarding custom events and binding/triggering

link|flag
thx for the tip – Julian Weimer Aug 6 at 13:31

Your Answer

Get an OpenID
or

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