Skip to content

Instantly share code, notes, and snippets.

@jessebeach
Created January 6, 2012 16:18
Show Gist options
  • Save jessebeach/1571249 to your computer and use it in GitHub Desktop.
Save jessebeach/1571249 to your computer and use it in GitHub Desktop.
Building DOM elements
$('<div>', {
html: $('<a>', {
href: 'http://qemistry.us',
text: 'this is a link'
})
})
.appendTo($('body'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment