Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
any error message? – Jonathan de M. Dec 7 '12 at 14:06
@Jonathan de M. excuse me. I forgotted! edited! – user1856906 Dec 7 '12 at 14:07
1  
Not really an answer, but the scope of your function will be the button element itself, so you could replace the whole event.target section with either the jQuery $(this).attr('name') or raw JavaScript this.getAttribute('name') – steveukx Dec 7 '12 at 14:20
@steveukx: if you answer the question I will give you the correct answer because it works. – user1856906 Dec 7 '12 at 14:24
Thanks, I've added it as an answer too. – steveukx Dec 7 '12 at 14:26

3 Answers

up vote 1 down vote accepted

Attaching a click handler in that way will result in the scope of the function being set to the button element itself. You could therefore replace the whole event.target section with either the jQuery:

$(this).attr('name');

or raw JavaScript:

this.getAttribute('name');
share|improve this answer

Why don't you use parameter e.g

button.attr("name", i).on("click",function(e) {
   var target = (e.target) ? e.target: e.srcElement;
        alert(target.name);
});

More Info

$("#dataTable tbody tr").on("click", function(event){
   alert($(this).text());
});

according to: http://api.jquery.com/on/

share|improve this answer
same problem: e is undefined – user1856906 Dec 7 '12 at 14:13

You have to pass e as a parameter.

button.attr("name", i).on("click",function(e) {
    var target = (e.target) ? e.target: e.srcElement;
            alert(target.name);
});

Léon

share|improve this answer
2  
why you redefine e? – Jonathan de M. Dec 7 '12 at 14:09
does not work. If I pass e as a parameter do I have to cancel var e=? – user1856906 Dec 7 '12 at 14:11
Changed it , also , are you using jQuery 1.6 ? Because .attr() will return undefined if the attribute isn't correctly set. – leonvv Dec 7 '12 at 14:15
I'm using d3.js library. – user1856906 Dec 7 '12 at 14:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.