Click here to Skip to main content
15,906,626 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,
In my project I have an Imagebutton On that hover I need to visible two buttons.

Is this possible if possible Pls help me out.

Thanks,
Vinay Peddiraju
Posted
Comments
hitech_s 13-Oct-11 5:40am    
yes its possible.......
vinayraju 14-Oct-11 0:07am    
Thanks for your reply....

1 solution

Hi,

add attribute to imagebutton

ASP.NET
<asp:imagebutton id="fg" onmouseover="f1()" mode="hold" xmlns:asp="#unknown" />


And in javascript


JavaScript
 function f1()
{
  $("#btn1").show();
 $("#btn2").show();

//document.getElementByID("btn1").style.display="";
//document.getElementByID("btn1").style.display="";
}


All the Best
 
Share this answer
 
Comments
Anuja Pawar Indore 13-Oct-11 5:46am    
My 5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900