Modify ↓
Ticket #9677 (closed bug: invalid)
Bug with replaceWith and document.write
| Reported by: | abonec@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | 1.next |
| Component: | manipulation | Version: | 1.6.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
This piece of code replace all document. $('#jq-compression').replaceWith("<script>document.write('fsdfsdf')</script>")
But should only add 'fsdfsdfsdf' at the end of document.
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.

This is correct behavior as script tags created with jQuery will be evaluated. It is also recommended that document.write not be used.