How to show div on textbox control using javascript? -
i stucked issue,as have captured mouseover event on textbox.here code of mouseovering;
<script type="text/javascript"> window.onload=function(){ document.getelementbyid("dijit_form_textarea_0").attachevent("onmouseover",function(){ document.getelementbyid("div_1_1_1").style.display = 'block'; document.getelementbyid("dijit_form_textarea_0").setattribute("title",'hello world'); });
this code works fine , shows tooltip when mouse on over particular textbox. want show div on mouseovering instead of showing tooltip.
how can accomplish task,can assist me?
Comments
Post a Comment