|
Content with label events in Guy's Blog (See content from all spaces)
Related Labels:
javascript, jquery, namespace, plugin, tutorial
jQuery Event Namespacing
Just found this blog showing how to namespace events in jQuery http://www.learningjquery.com/2007/09/namespaceyourevents: (function($){ $.fn.extend({ clicked: function() { return this.bind('click.clicked', function() ); }, unclicked: function() }); })(jQuery); The same blog also contains a Plugin Development Pattern http ...
Other labels:
jquery, namespace, plugin, tutorial, javascript
|
|
|