Skip to content

Instantly share code, notes, and snippets.

@cocoanton
Created November 26, 2013 10:03
Show Gist options
  • Save cocoanton/7656001 to your computer and use it in GitHub Desktop.
Save cocoanton/7656001 to your computer and use it in GitHub Desktop.
Printsnippet
$('.printButton').on('click',function () {
$body = $('body');
content = $body.html();
$body.html($('.printme').html());
window.print();
$body.html(content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment