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");
});
});