vote up 0 vote down star

I've created a jQuery wee plugin for myself which takes care of showing, hiding and submitting a form to give in-place editing. Currently I have several of these on a page which function independently and I am happy. However, I'm thinking that an 'Edit All' might be useful. I'd therefore want to be able to access all instances of the plugin within the page and access their show/hide/validate/submit functions in unison. Is there a way to do this?

flag

2 Answers

vote up 3 vote down check

Use the custom events in jQuery to make this easy.

Something like this:

(function($) {  	
    $.fn.myPlugin = function() {	
    	return this.each(function(){		

    		//Plugin Code Goes Here

    		$(this).bind("pluginEdit",function(){
    			internalEditFunction();
    		});			
    	});
    };
})(jQuery);

Then you can just

$(selector).trigger("pluginEdit");
link|flag
Just came back to this and it perfectly solved another (slightly related) problem I was having. Thanks loads. – jammus Dec 1 '08 at 12:25
vote up 0 vote down

Hmmm I guess I could create an array of instances...

var plugins = new Array();

plugins.push($('first_editable_section').pluginThing());
plugins.push($('second_editable_section').pluginThing());

and access them through that.

link|flag

Your Answer

Get an OpenID
or

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