hi doing a site(HTML)now the client wants to open a PDF file (no prob)
BUT she wants to open the file BEHIND the main window when you click a button....
any tricks to that? javascript i assume couldnt fine anything decent
on the net.
thank fellas!
Printable View
hi doing a site(HTML)now the client wants to open a PDF file (no prob)
BUT she wants to open the file BEHIND the main window when you click a button....
any tricks to that? javascript i assume couldnt fine anything decent
on the net.
thank fellas!
Target the pdf window with blur();, or use in its HTML a body tag that says
<body onLoad="window.blur();">
Often you'll see focus(); at the end of a pop-up script, this will do the opposite
thanx i'll try that