Selection pointer gone

A

Andre

I have set up a link to a page, using the "open a browser window" option
under behavior.. because then you can set the window size of the window. But
I have 2 problems...
If I want to create a link by trying to insert a behaviour without first
creating a hyperlink, then all options under behavior is greyed out.
Ok then i created the hyperlink and afterwards created the behavior and the
link work fine but 2 windows pop up, the resized one and a standard 800x600
one.
I then remowed the part of the code that point to the standard hyperlink and
it now work correct.. only the resized window opens.
Problem: the hand (selector) does not show in IE, but if you click on the
link the window open ... what happen to the selector (i mean the hand with
the pointing finger that we are so used to)
Thanks
 
R

Ronx

You need a link
<a href="pagename.htm" target="_blank"
onclick="whatever(parameterList);return false;">link text</a>

The whatever(parameterList) is the behaviour to open the window, the
return false prevents the standard page opening. If javascript is
disabled, then the standard page will open in a new window.
 
A

Andre

Thanks Ronx.. appreciated

Ronx said:
You need a link
<a href="pagename.htm" target="_blank"
onclick="whatever(parameterList);return false;">link text</a>

The whatever(parameterList) is the behaviour to open the window, the
return false prevents the standard page opening. If javascript is
disabled, then the standard page will open in a new window.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 

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