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

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -