jQuery plugin snippet

Demo snippet code

by ajinkyax

JavaScript

(function($){
    $.fn.cont = function(options){
        var defaults = {
        
        };
        
        var config = $.extend(defaults, options);
        
        this.each(function(){
            var $this = $(this);
        });
        
        return this;
    };
})(jQuery);