Opened 12 years ago
Closed 12 years ago
#10310 closed enhancement (wontfix)
.append does not accept arrays as an argument
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | manipulation | Version: | 1.6.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
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 (1)
comment:1 Changed 12 years ago by
Component: | unfiled → manipulation |
---|---|
Priority: | undecided → low |
Resolution: | → wontfix |
Status: | new → closed |
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.