onchange event not fire in google chrome
- by purnang.advant
I have a web application build on asp.net, the Textbox onchange event not working in chrome? On page load i wrote this code,
textbox1.Attributes.Add("onchange", "SetEditDataFlag();");
SetEditDataFlag() -- it is a javascript function. When I browse the application in chrome then this function is not called when i changed some value on the textbox.Its working properly in IE.
Thanks in advance.Please help me.