I have this code that does not work with firefox:
button.attr("name", i).on("click",function() {
var e = window.event;
var target = (e.target) ? e.target: e.srcElement;
alert(target.name);
});
I think the problem is in the event but I don't know how to fix it.
the error message is:
[14:59:18.721] e is undefined @ http://127.0.0.1:8080/Tesi/javascript/Home.js:4202
Thanks in advance.
$(this).attr('name')or raw JavaScriptthis.getAttribute('name')– steveukx Dec 7 '12 at 14:20