Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Copyright (c) 2012 [iPs]TeaM
- * Bruno da Silva (email@dbrunodasilva.com)
- * Imprimir partes do documento através de id. 'getElementById'
- *
- * www.brunodasilva.com
- * www.ips-team.forumeiros.com
- */
- <script>
- function printId(formid) {
- if (document.getElementById(formid)) {
- // Criar Janela
- var impresso = window.open('','','');
- // Passar conteudo do form id para nova janela
- impresso.document.write(document.getElementById(formid).innerHTML);
- // Colocar janela em primeiro plano
- impresso.focus();
- // Imprimir a bagaça
- impresso.print();
- // Fechar a janela
- impresso.close();
- }
- else {
- alert("Parte do documento inexistente");
- }
- }
- // printId('divid');
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement