how can we create custom jQuery function (jQuery Plugins)?
Rahul Pandey
(function($) {$.fn.myPlugin = function() {return this.each(function() {//Do stuff});}; }(jQuery));