javascript - Open New Window and Print -


i use print button this:

<a href="javascript:window.print() window.open()">print</a>  

or

<a href="#" onclick:"window.print() window.open()">print</a> 

both doesn´t work @ same time.

all iframes fancybox 2 contens should open in new window @ same time clicking on button , print-dialog should started.

thanks help.
ongi

try this:

<a href="#" onclick:"window.open(); window.print();">print</a> 

this should open new window , print window @ same time.


Comments