Print DIV

<script>
function go()
{
var a = window.open(”,”,’width=300,height=300′);
a.document.open(“text/html”);
a.document.write(document.getElementById(‘foo’).innerHTML);
a.document.close();
a.print();
}
</script>

<div id=”foo”>This is a test</div>

<input type=”button” onclick=”go()” value=”Print this Page”>

Leave a comment