 Rank: Martian Estate Agent
Joined: 9/14/2003 Posts: 3,358 Location: United Kingdom
|
im looking for a script that when a text link is clicked will come up in a custom window for example i would like the window to to 300 by 400. is there any script that can do this??? Full On Design
|
 Rank: Admin
Joined: 8/26/2002 Posts: 3,467 Location: United Kingdom
|
A javascript window.open command will do that
window.open('URL','WINDOWNAME','toolbar=0,scrollbars=0,location=0,width=300,height=400,resizable=0')
|
 Rank: Martian Estate Agent
Joined: 9/14/2003 Posts: 3,358 Location: United Kingdom
|
I just made a cool little Javascript baised on your code <html>
<head>
</head>
<body>
<a href="#" onclick="window.open('http://www.google.com','001','toolbar=0,scrollbars=0,location=0,resizable=0')">YourLinkText</a>
</body>
</html> Full On Design
|