Modify ↓
Ticket #10908 (closed bug: invalid)
makeArray it's duplicate entries!
| Reported by: | jonathan.alexey16@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | core | Version: | 1.7.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Hello,
If you saw with atention, you will see that print twice "um" in ul list html.
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.

It's not a bug, you're just using it wrong.
jQuery finds the value of the first input it encounters that is a descendant of a <li>. In this example, the <li>s are parent and child. In both <li>s the input with the value "test" is the first it finds.
You should instead do something like this:
http://jsfiddle.net/mofle/D83Kq/2/
$('.ulList li input').each(function(i) { console.log( 'inputVal', $(this).val(), i ); });