Skip to content

Instantly share code, notes, and snippets.

@DNTech
Created August 2, 2018 00:00
Show Gist options
  • Save DNTech/937dac05612b38918eb3504e25df41d0 to your computer and use it in GitHub Desktop.
Save DNTech/937dac05612b38918eb3504e25df41d0 to your computer and use it in GitHub Desktop.
Print a table using JavaScript Custom Function
function printData( id )
{
var divToPrint=document.getElementById(id);
newWin= window.open("");
newWin.document.write(divToPrint.outerHTML);
newWin.print();
newWin.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment