javascript - How to run click event handler in Internet Explorer 10 using jquery? -
i'm trying run click event handler using jquery 1.7 clicking on anchor tag. this code working fine in firefox, i'm not able display alert box using same code in ie 10. please tell me how achieve functionality in internet explorer 10?
$(document).ready(function() { $('.call-link').on('click', function (ev, evdata) { alert("hello world"); }); });
it not calling in ie because element disabled.
see: demo
$(document).ready(function() { $('.call-link').click(function (ev, evdata) { alert("hello world"); }); });
Comments
Post a Comment