Forum Moderators: open

Message Too Old, No Replies

Adding pop up boxes

How do I add a pop window?

         

steelrane

7:55 pm on Jan 26, 2004 (gmt 0)

10+ Year Member



I'm using FP 2002 and I want to add a pop up window link so when one of my customers want to see a picture of the back of one of the items a smaller window opens showing the back of the item.
Any ideas?

vrtlw

11:46 am on Jan 27, 2004 (gmt 0)

10+ Year Member



In a word, JavaScript

Search on google for that and the answer should be there.

thehittmann

4:54 am on Jan 28, 2004 (gmt 0)

10+ Year Member



<a href="javascript:window.open('[YourURL]','[YourWindowName]','[WindowOption1],[WindowOption2],etc...');"

Common window options are:
width=(in pixels, e.g. 350)
height=(in pixels)
toolbar=(yes/no)
directories=(yes/no)
location=(yes/no)
menubar=(yes/no)
resizeable=(yes/no)
scrollbars=(yes/no)
status=(yes/no)

<a href="" OnClick="window.close()">Close Window</a>