link problem
Brought to you by:
donnaiwan
Hi everybody,
Please tell me how can I define a link for mailto:
var pmMail = new TPopMenu('EMailMe','','f',"newWindow
('mailto:me@email.com')",'EMailMe');
and also for open a page in Inline Frame
var pmTest = new TPopMenu('Test','','f',"newWindow('
target="I1" href="body.html"')",'test');
I tried this settings and many other ways but still
nothing works.
Thanks
Logged In: YES
user_id=1525199
Hi there,
Here's how to open a link ("link.html") in another frame
called "framename":
var pmTest = new TPopMenu
('Test','','f',"parent.framename.location.href='link.html'"
,'test');
I am supposing you have the menu in one frame and you want
to open the page "link.html" in another frame which
belongs to the same frameset.
Good luck!