pop ups

  • Thread starter Thread starter Sandra Hendsbee
  • Start date Start date
S

Sandra Hendsbee

Hi:
How do I create a pop-up for a link? ie:open a new window when a visitor
clicks on a link?

Thanks,
Sandy
 
in the html code where the link is, make sure you include the
target="_blank" code, ie:

<a href=http://somewhere.com target="_blank">

don't forget the leading underscore (_) before the blank.
 
Download and install the free Jimco Spawn from www.jimcoaddins.com

--
-----
Tom Pepper Willett
Microsoft MVP - FrontPage
----
| Hi:
| How do I create a pop-up for a link? ie:open a new window when a visitor
| clicks on a link?
|
| Thanks,
| Sandy
|
|
 
-----Original Message-----
Hi:
How do I create a pop-up for a link? ie:open a new
window when a visitor clicks on a link?

Right-click the link, choose Hyperlink, click Target
Frame, and select New Window.

If you want to get fancy, you'll need to write a line of
Javascript code, such as

<a href="javascript:window.open
('mypage.htm','_blank', 'height=100,width=200,toolbar=no,m
menubar=no, status=no');void(0);">Click here.</a>

For more info on the window.open method, browse:

http://msdn.microsoft.com/workshop/author/dhtml/reference/
methods/open_0.asp

Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
Back
Top