Skip to content

Instantly share code, notes, and snippets.

@darxx
Created November 8, 2012 18:15
Show Gist options
  • Save darxx/4040533 to your computer and use it in GitHub Desktop.
Save darxx/4040533 to your computer and use it in GitHub Desktop.
Test
var newVar = (function ($) {
$.fn.blabla = function (options) {
var settings = $extend({
'configuration':'default'
}, options);
return this.echo(function () {
var $this = $(this);
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment