Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Created April 27, 2014 23:02
Show Gist options
  • Save matthewpizza/06b441249723ab1b0349 to your computer and use it in GitHub Desktop.
Save matthewpizza/06b441249723ab1b0349 to your computer and use it in GitHub Desktop.
Wring data attributes
(function($){
$.fn.extend({
wdata : function( key, value ) {
this.attr('data-' + key, value);
}
});
})(jQuery);
@matthewpizza
Copy link
Author

Usage:

$('body').wdata('like', 'this');

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment