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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mouse over

Status
Not open for further replies.

mayu03

Programmer
Oct 3, 2003
91
US
I have the following code where clients can view a bigger picture when they click on a smaller. Is it possible to view a bigger picture when mouse in the smaller picture.
<head>
<title>HOME</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; type=&quot;text/css&quot;>
</head>
<frameset align=right cols=&quot;*,200&quot; border=&quot;0&quot;>
<frame align=left src=&quot;target0.html&quot; name=&quot;images&quot; border=&quot;0&quot;>
<frame src=&quot;thumbnails.html&quot; scrolling=&quot;yes&quot; border=&quot;0&quot;>
</frame>
</frame>
</frameset>
</frame>
</frameset>
</html>
 
Hey,

I'm pretty sure that you need to use a name besides &quot;images&quot; for your frame, since that's already reserved in JavaScript. Try this:

<html>
<head>
<title>HOME</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; type=&quot;text/css&quot;>
</head>
<frameset align=right cols=&quot;*,200&quot; border=&quot;0&quot;>
<frame align=left src=&quot;target0.html&quot; name=&quot;images1&quot; border=&quot;0&quot;></frame>
<frame src=&quot;thumbnails.html&quot; scrolling=&quot;yes&quot; border=&quot;0&quot;></frame>
</frameset>
</html>

And in your thumbnails.html page, do like this:
<img src=&quot;thumbnail1.gif&quot; onmouseover=&quot;window.images1.href=page1.html;&quot;>
<img src=&quot;thumbnail2.gif&quot; onmouseover=&quot;window.images1.href=page2.html;&quot;>

Rick

-----------------------------------------------------------
RISTMO Designs
Arab Church
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top