Boxes around Buttons at Mouse Over

  • Thread starter Thread starter Bob Wylly
  • Start date Start date
B

Bob Wylly

In Frontpage 2002, how do I get a box or outline to show
around around a button when a user mouses over it?
 
Hi Bob,

A button being an image?

<a href="#" onmouseover="document.images['myImage'].border = '1'"
onmouseout="document.images['myImage'].border = 0" >
<img id="myImage" border="0" src="images/1.gif" width="25" height="25" ></a>
 
Back
Top