Return to Snippet

Revision: 33211
at October 7, 2010 02:46 by konteck


Initial Code
(function($){
    $.fn.extend({
        helloWorld : function(options) {
            // Plugin options
            var options = $.extend({
                foo: 'hello '
            }, options);


            return this;
        }//,
    });
})(jQuery);

Initial URL


Initial Description


Initial Title
jQuery Plugin Structure

Initial Tags
plugin, jquery

Initial Language
jQuery