Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rollover code ... 1

Status
Not open for further replies.

rebeccam

Programmer
May 21, 2002
20
CA
Does anyone know the code for a rollover that opens up a sized window.
For example: width=700,height=470,tollbar=yes,menubar=yes'
Thanks
 
like this
<html>
<head>

<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval(&quot;page&quot; + id + &quot; = window.open(URL, '&quot; + id + &quot;', 'height=700,width=470,toolbar=1,menubar=1');&quot;);
}
// End -->
</script>

</head>
<body>
<a href=&quot;#&quot; onmouseover=&quot;javascript:popUp('page.htm')&quot;>Rolover for new window!!!!</a>
</body>
</html> I help at your own risk, if I brake it sorry! But if I fixed it, let me know with a
star.gif
[thumbsup2]
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top