Modify ↓
Ticket #10672 (closed bug: worksforme)
attr() no return value
| Reported by: | bartha.brw@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.7 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Dear jQuery Team!
I found a bug: attr() no return value.
Test:
html <input type="button" name="test_button">
jQuery $("input").click(function(){
var type = $(this).attr('type');
name = $(this).attr('name');
alert("Type: "+type+" & Name: "+name);
});
return: "Type: undefined & Name: undefined"
Thank: Barnabás Bartha bartha.brw@…
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Whoops, i deleted my earlier comment, misread the example.
http://jsfiddle.net/dmethvin/4qTmX/