1
Reply

how can we create custom jQuery function (jQuery Plugins)?

Rahul  Pandey

Rahul Pandey

11y
1.1k
1
Reply

    (function($) {$.fn.myPlugin = function() {return this.each(function() {//Do stuff});}; }(jQuery));