Skip to content

Instantly share code, notes, and snippets.

@robzolkos
Created November 24, 2011 02:36
Show Gist options
  • Save robzolkos/1390507 to your computer and use it in GitHub Desktop.
Save robzolkos/1390507 to your computer and use it in GitHub Desktop.
Browser prints hidden elements
function printJobSheet() {
$('.historysection').hide();
$('.copy').hide();
window.print();
$('.copy').show();
$('.historysection').show();
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment