Skip to content

Instantly share code, notes, and snippets.

@Mutungi
Created April 15, 2016 09:29
Show Gist options
  • Save Mutungi/02e010e9f09a07d8e4476fc8e8f96c6a to your computer and use it in GitHub Desktop.
Save Mutungi/02e010e9f09a07d8e4476fc8e8f96c6a to your computer and use it in GitHub Desktop.
function printPage() {
if(document.all) {
document.all.divButtons.style.visibility = 'hidden';
window.print();
document.all.divButtons.style.visibility = 'visible';
}
else {
document.getElementById('divButtons').style.visibility = 'hidden';
window.print();
document.getElementById('divButtons').style.visibility = 'visible';
}
}//divButton are the id of the tag containing the the print tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment