|
All content with label events.
Related Labels:
tutorial, javascript, jquery, namespace, plugin
jQuery Event Namespacing
(Guy's Blog)
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
|
|
|