Posts by ByNETO • 51 points
1 post
-
5
votes5
answers87966
viewsA: How to print content inside a HTML div?
In short: <script> function cont(){ var conteudo = document.getElementById('print').innerHTML; tela_impressao = window.open('about:blank'); tela_impressao.document.write(conteudo);…