Skip to content

Instantly share code, notes, and snippets.

@fearphage
Created March 26, 2011 01:03
Show Gist options
  • Select an option

  • Save fearphage/887921 to your computer and use it in GitHub Desktop.

Select an option

Save fearphage/887921 to your computer and use it in GitHub Desktop.
jquery#setNative
(function($) {
$.fn.setNative = function(property, value) {
return this.each(function() {
return this[property] = value;
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment