Boxes around Buttons at Mouse Over

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?
 
M

MD WebsUnlimited.com

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>
 
Top