Return to Snippet

Revision: 21694
at December 18, 2009 12:02 by yanekk


Initial Code
(function($) {
	$.fn.extend({
		yAutocomplete: function(options /* object */) {
			return this.each(function() {
				var settings = jQuery.extend({
					/* extending options object with defaults */
				}, options);
				var self = $(this);
		/* here comes the logic */
			});
		}});
})(jQuery);

Initial URL


Initial Description


Initial Title
my jquery plugin template

Initial Tags


Initial Language
jQuery