onclick="FP_openNewWindow

A

Art

Does anyone know whether the onclick="FP_openNewWindow has any parameters
that allow positioning the pop up window? My window always pops to the
right of my screen and i'd like it more centered.

Thanks Art
 
M

Martin Chantler

Hi Art,

I am still a newbie to FP, but have found these two tips:

Try this in HTML view:-

window.open('http://url/page.htm',
'PopOver','height=300,width=500,location=no,scrollbars=0,ontop=true');onblur="window.focus()";


or in Javascript:-

Pop Up Window
~~~~~~~~~~~~~
<script> function popUp(URL) { props=window.open(URL, 'toolbars=0,
scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=300,
height=200'); } </script> <a url=javascript:popUp('popup.html')>Click here
to open popup window</a>

Hope this helps?

All the best,
Martin.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top