Skip to content

Instantly share code, notes, and snippets.

@arahaya
Created May 5, 2015 14:58
Show Gist options
  • Save arahaya/765d0dff8bec2ef96880 to your computer and use it in GitHub Desktop.
Save arahaya/765d0dff8bec2ef96880 to your computer and use it in GitHub Desktop.
jQuery.create(element, attrs)
jQuery.create = function (element, attrs) {
return $('<' + element + ' />', attrs);
};
$.create('a', {href: 'http://google.com'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment