How to run click event handler in Internet Explorer 10 using jquery?
html, internet-explorer, javascript, jquery
Solution
It is not calling in IE because the element is disabled.
see: Demo
$(document).ready(function() {
$('.call-link').click(function (ev, evData) {
alert("hello world");
});
});
Problem
I'm trying to run click event handler using jquery 1.7 by clicking on anchor tag. This code is working fine in firefox, but I'm not able display alert box using same code in IE 10. Could anyone please tell me how to achieve this functionality in internet explorer 10? ``` $(document).ready(function() { $('.call-link').on('click', function (ev, evData) { alert("hello world"); }); }); ```