I would like to print only a table from a webpage whose id is "test1"
function printPage() {
$var = document.getElementById('test1');
print($var);
}
In print preview, the whole document is appearing and not the table. Most likely the entire page will be printed while all I want is my table to be printed.