Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <div>
  2. <table class= "table">
  3. <tr>
  4. <td>
  5. <label style="font-size: 14px ;font-family: verdana; width: 650px" for="subscribeNews">Did this business file 1099Misc form this fiscal year?</label>
  6. </td>
  7. <td>
  8. <label for= "subscribeNews1"><input type="text" id="subscribeNews1" name="subscribe1"></label>
  9. </td>
  10. </tr>
  11. </table>
  12. </div>
  13.  
  14. <div>
  15. <a class="btn btn-info" href="javascript:imprSelec('seleccion')" >Print</a>
  16. </div>
  17.  
  18. <script language="Javascript">
  19. function imprSelec(nombre) {
  20. var ficha = document.getElementById(nombre);
  21. var ventimp = window.open(' ', 'popimpr');
  22. ventimp.document.write( ficha.innerHTML );
  23. ventimp.document.close();
  24. ventimp.print( );
  25. ventimp.close();
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement