Newbie Question -- Front Page

  • Thread starter Thread starter R Bolling
  • Start date Start date
R

R Bolling

I would like to put the mouse pointer over a name and the photo of
that person appears in a static frame. When I go to the next person,
his photo appears on the same frame. Any ideas on how to complete
this task with FrontPage?

Thank you,

Robbie Bollinger
 
Try coding the names like this:

<a href="javascript:;"
onmouseover="emppic.src='images/momoore.jpg'">Mo Moore</a>

and the picture area like this:

<img name="emppic" border="0" src="images/blank.jpg">

If you have FrontPage 2003, you can use Behaviors to do
this strictly through the GUI.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
|| Microsoft FrontPage Version 2002 Inside Out
|| Web Database Development Step by Step .NET Edition
|| Troubleshooting Microsoft FrontPage 2002
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Back
Top