Last active
September 15, 2016 03:45
-
-
Save valdiney/c69ae0820efaa6487be60c4b39cebdb0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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