Tim@DIM
03-26-2012, 08:49 PM
Hello.
Im trying to put in a Popup printer-friendly page on my site.
the Popup works great in Chrome and FireFox. It even works in IE - except im getting a black bg instead of the white i get in the other browsers.
Also the print command is not working in Firefox or IE.
Im running FireFox 8 and IE 9.
heres the code for the Popup:
<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=200,width=150');
if (window.focus) {newwindow.focus()}
return false;
}
// -->
</script>
</head>
<div>
<img src="IMAGES/BidsCouponSmall-text.png" />
<br />
<br />
<a href="printcoupon.htm" target="coupon"
onclick="window.open('printcoupon.htm','coupon','height=500,
width=400,toolbar=no,directories=no,status=no,
menubar=no,scrollbars=no,resizable=no'); return false;"
>Click HERE To Print</a>
<br />
</div>
To avoid cluttering of this post, the page im having printing problems with can be found here:
http://bidsservice.net/printcoupon.htm
its all html, css, and JS. no server-side code.
Im trying to put in a Popup printer-friendly page on my site.
the Popup works great in Chrome and FireFox. It even works in IE - except im getting a black bg instead of the white i get in the other browsers.
Also the print command is not working in Firefox or IE.
Im running FireFox 8 and IE 9.
heres the code for the Popup:
<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=200,width=150');
if (window.focus) {newwindow.focus()}
return false;
}
// -->
</script>
</head>
<div>
<img src="IMAGES/BidsCouponSmall-text.png" />
<br />
<br />
<a href="printcoupon.htm" target="coupon"
onclick="window.open('printcoupon.htm','coupon','height=500,
width=400,toolbar=no,directories=no,status=no,
menubar=no,scrollbars=no,resizable=no'); return false;"
>Click HERE To Print</a>
<br />
</div>
To avoid cluttering of this post, the page im having printing problems with can be found here:
http://bidsservice.net/printcoupon.htm
its all html, css, and JS. no server-side code.