Hi,
I am using a picture menu to display pictures that a user can click on and go to a different page. I am trying to add the ability to roll over a image and have that image change to a different image. Ex: about.png changes to display about-roll.png when the
mouse hovers over the first image.
I have looked around the internet and seen people use this:
Menu1.Attributes.Add("mouseover", "this.src = '~/pictures/about-roll.png'");
Menu1.Attributes.Add("mouseout", "this.src = '~/pictures/about.png'");
What I don't know is how to call these from
<asp:Menu>
How would I make this work. Or is there another solution that would work better?
Go to the complete details ...