changing color of button on mouse move in asp

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • skadu3
    New Member
    • Sep 2007
    • 9

    changing color of button on mouse move in asp

    hello..

    please tell me how to change color of button on mouse move in asp????
  • jeffstl
    Recognized Expert Contributor
    • Feb 2008
    • 432

    #2
    Originally posted by skadu3
    hello..

    please tell me how to change color of button on mouse move in asp????
    You can do this in all kinds of ways depending on what you want to use

    If you are using image buttons
    Code:
    <a href="" onMouseOver="document.MyImage.src='image2.gif';" onMouseOut="document.MyImage.src='image1.gif';"> 
    <img src="image1.gif" name="MyImage">
    If you are using just links though you can use CSS which I highly recommend you can use the hover attribute for your entire page
    Code:
    <style type="text/css">
    A:hover {text-decoration: underline; color: red;}
    </style>

    Comment

    Working...