I have seen people writing jQuery plugins in different styles. Some authors use a private methods object (within a closure) and invoke the method using methods[fn].call(this, args) style. There are other who create a new object of a private class, and invoke the method like this.fn(). Few other use ui.widget as the base for their plugin.

Which of these methods would you suggest for a plugin? I am not interested in using ui.widget, because it is an extra dependency, which can be avoided. Can anyone suggest some well written jQuery plugins, which will help me write better plugins.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I don't know if mine are well written or not. I kept it very simple at first then gradually added functionality to allow for instance manipulation etc. The ones I wrote are terse if that's what you mean by well written and they do get a lot of downloads.

Just search on dumbFormState and dumbCrossFade or "how to create plugins that are instance aware" and you will find my writings and code.

The first thing you must do to have the possibility of being great is knowing your sh**.

1) Watch Douglas Crockford videos over and over until it sticks. He is brilliant. I cannot stress this first one enough. 2) Study popular jQuery plugin implementations since after looking at Crockford, you will get it. 3) Go through John Resig's Advanced JavaScript Tutorial. He is brilliant. I cannot stress this enough.

The road to learning this is not easy however, if you go deep and you will reap.

link|improve this answer
Thanks. I have written a few instance aware plugins for a few sites. I have always used methods[fn].call (this, args) from within the $.fn.plugin constructor and it always works. I wanted to know, if there were better ways of doing this. Thanks for the pointers, i will go through them. – Joyce Babu Dec 12 '11 at 7:57
Which plugins have you written? I am in need of some smart folks as I run emeraldcode.com and kitgui.com and both are heavy in jQuery. – kitgui.com Dec 12 '11 at 8:03
I have written a few plugins, but haven't released them to public (too lazy to write documentation), even though I have plans to do that. Here are some of them – Joyce Babu Dec 12 '11 at 8:26
Overlay ($.overlay), Modal Window($.fn.modal), Tooltip($.fn.tooltip) bit.ly/v7DO7C – Joyce Babu Dec 12 '11 at 8:27
Adds Google transliteration to a textarea / contenteditable element $.translit() bit.ly/sa62XG – Joyce Babu Dec 12 '11 at 8:27
show 5 more comments
feedback

I think this link provides some helpful hints and links:

http://james.padolsey.com/javascript/why-create-a-jquery-plugin/

link|improve this answer
It is a very simple plugin. I am interested in little more complex plugins with its own methods, events etc. Thanks anyway. – Joyce Babu Dec 12 '11 at 7:45
feedback

My favorite is:

http://stefangabos.ro/jquery/jquery-plugin-boilerplate/

It follows the jQuery Plugin Authoring Practices

link|improve this answer
I never thought of writing the methods object as a local variable. I think that will be really useful, as it will be a lot easier to track the current object and its settings. – Joyce Babu Dec 12 '11 at 7:47
Great, isn't it? It also keeps you from wanting to "namespace" plugin methods. – Jason T Featheringham Dec 12 '11 at 7:47
After going through plugins like github.com/Nikku/jquery-bootstrap-scripting/blob/1.2-wip/lib/… , I am leaning towards creating a separate object. I might be easier to reuse the code too. For example, a plugin to create an overlay can be extended to create modal dialogs, tooltips etc. – Joyce Babu Dec 12 '11 at 8:02
feedback

Your Answer

 
or
required, but never shown

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