pop-up and printing
Posted: Mon Jan 03, 2005 11:04 am
Can anyone help me with this issue ... i have a pop-up window that popsup when a button is pressed. I need to send the contents of the popup to the printer. This is what i have but it doesn't open up pronter window ... can anyone help ?
Thank you
Greg
Code: Select all
<script language="JavaScript">
<!--
var howManySeconds = 1
function pause() {
myTimer=setTimeout("printWindow()",howManySeconds*1000)
}
function printWindow() {
window.print()
}
//-->
</script>Greg