input button click is not invoked through javascript in IE9

M

Mini1981

Guest
<asp:Button runat="server" ID="dummyProceed" Style="display: none;" OnClick="btnProcedi_Click" />

document.getElementById("<%=dummyProceed.ClientID%>").click();

We have a hidden input button which is used to submit the form.The submit is invoked using a javascrit. The script is invoked on click of another button. The click event is invoked in IE 8 (IE5,IE6,IE7 also it works fine). IN IE9 the click event is not getting invoked.Any clue, or solution would be helpful.Thanks in Advance. Below is the aspx and the java script code of the button.

Continue reading...
 
Back
Top