How to create a popup menu when i move the cursor over the image/image button and also to change the image to some other image?

Showing Answers 1 - 6 of 6 Answers

syed imam

  • Mar 26th, 2006
 

give me one example of popup menu

  Was this answer useful?  Yes

ramkim

  • Apr 5th, 2006
 

image can be changed onmouseover as described below

Give some name to img, example name it as img1

<a href="#" onmouseover="calljavascript()"><img src="something.gif" name="img1"></a>

write javascript function as

<script>

img2 = new Image();
img2.src="something_new.gif"

function calljavascript()

{

document.images["img1"].src=img2.src;

}

</script>

  Was this answer useful?  Yes

selvam

  • Jan 29th, 2007
 

how to create the pop up menu in VB .NET

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions