I created a textbox and wrote onfocus="getFocus()" //"getFocus();" also not working
Now I wrote function in javascript
function getFocus()
{
alert('Hello I Got Focus !!');
}
The problem is in IE8 it worked perfectly, but in IE9 alert is not showing. Can anyone tell what is wrong with the following code ??
I also tried
txtAmt.Attributes.Add("onfocus","getFocus()")
txtAmt.Attributes.Add("onfocus","getFocus();") //also not working
but still it didn't worked
i too tried
txtAmt.Attributes.Add("onfocus","javascript:getFocus();")
In internet option ActiveScripting is also 'Enabled' Now i am worried.. what to do ??