#8440 closed enhancement (wontfix)
SUGGESTION: Make .append() able to take a URL in the same manner as .load()
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | unfiled | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
It would be convenient to append things from other pages.
ex: $('#box').append('http://somewhere.com #someDiv');
Change History (3)
comment:1 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
FYI: part of why we wontfix'd this is because it would be very complicated and perhaps not-woth-it to determine what is a URL string with an optional selector and what is just an html string someone wants to append.
comment:3 Changed 12 years ago by
oh, ok, cool. I didn't know .appendTo().
So does .appendTo() ignore the matched item in $('<div></div>') and append to #box in your example?
EDIT: wait, nevermind, i get it! Nice.
Note: See
TracTickets for help on using
tickets.
cool idea.
so instead of
you can just do
which just requires a touch more work but really its not too bad.