We have a problem in IE with some users where the onclick event isn't working:
<button type="button" id="btnSomething" name="btnSomething" onClick="myFunction();">Continue</button>
After digging around the net, people suggested using jQuery's .click event for cross browser compatibility.
So I've tried the following:
<script type="text/javascript">$('#btnSomething').click(function(){myFunction();});</script>
This doesn't work, I've tried adding in alert('test'); but that doesnt get called either. If it makes any difference, I didnt remove the onClick="myFunction();" from the button element, just adding the above JS directly after the button in the HTML file.