I am using themes in Frontpage an am trying to use a button to open a new window that will load a gif file.
Announcement
Collapse
No announcement yet.
FP Theme button to load new window
Collapse
X
-
Re: FP Theme button to load new window
<input type="button" value="Open Picture" onclick="window.open('picture.gif')">
if you want the new window to have no toolbars and menubars and the like:
<input type="button" value="Open Picture" onclick="window.open('picture.gif','','location=0,toolbars=0,menubars=0,resizable=1,status=1,width=8 00,height=400')">
Originally posted by Grant
I am using themes in Frontpage an am trying to use a button to open a new window that will load a gif file.
Comment