Skip to content

Instantly share code, notes, and snippets.

@joshuaadrian
Created October 28, 2013 18:44
Show Gist options
  • Save joshuaadrian/7202349 to your computer and use it in GitHub Desktop.
Save joshuaadrian/7202349 to your computer and use it in GitHub Desktop.
$.fn.pluginName = function(options) {
this.each(function() {
var settings = $.extend({
'key1' : 'value1',
'key2' : 'value2',
'key3' : 'value3'
}, options);
// Do something
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment