Modify ↓
Ticket #10310 (closed enhancement: wontfix)
.append does not accept arrays as an argument
| Reported by: | mblase75@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | manipulation | Version: | 1.6.4 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
The first .append will work, the second will not:
$('#content1').append("test one","test two"); var arr = ["test one","test two"]; $('#content2').append(arr);
The documentation clearly fails to say that .append accepts array arguments. However, I feel it should accept them and treat them the same as multiple arguments.
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.

Thank you for the suggestion, but I don't think we will be implementing this. It would not be consistent with any other manipulation method.