Skip to content

Instantly share code, notes, and snippets.

@valdiney
Last active September 15, 2016 03:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valdiney/c69ae0820efaa6487be60c4b39cebdb0 to your computer and use it in GitHub Desktop.
Save valdiney/c69ae0820efaa6487be60c4b39cebdb0 to your computer and use it in GitHub Desktop.
<script>
window.onload = function() {
var imprimir = document.querySelector("#imprimir");
imprimir.onclick = function() {
imprimir.style.display = 'none';
window.print();
var time = window.setTimeout(function() {
imprimir.style.display = 'block';
}, 1000);
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment