#10908 closed bug (invalid)
makeArray it's duplicate entries!
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | core | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hello,
If you saw with atention, you will see that print twice "um" in ul list html.
Change History (3)
comment:1 Changed 11 years ago by
comment:3 Changed 11 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:4 Changed 11 years ago by
Component: | unfiled → core |
---|---|
Priority: | undecided → low |
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 areparent
andchild
. 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/