Opened 12 years ago
Closed 12 years ago
#9539 closed bug (invalid)
$(element).remove() with iframe included make a request to the iframe-src
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | manipulation | Version: | git |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
var aHtml='<div id="x"><iframe src="http://localhost..../"/></div>' var dlg = $(aHtml).dialog(...close:function(){dlg.remove()})
the invocation of: dlg.remove() causes jquery to make a request to the iframe-src.
dlg.empty().remove() helped us out.
Change History (3)
comment:1 Changed 12 years ago by
Component: | unfiled → manipulation |
---|---|
Owner: | set to [email protected]… |
Status: | new → pending |
comment:2 Changed 12 years ago by
Status: | pending → new |
---|
any time the dialog is closed, the request to the url (from iframe src) is executed. This can be seen e.g in the NET-tab of Firebug.
comment:3 Changed 12 years ago by
Priority: | undecided → low |
---|---|
Resolution: | → invalid |
Status: | new → closed |
I don't see a problem in jQuery core. http://jsfiddle.net/timmywil/TaypA/5/ If this is an issue with jQuery UI, I recommend submitting an issue on the jQuery UI Bug Tracker
Note: See
TracTickets for help on using
tickets.
Thanks for taking the time to contribute to the jQuery project! Please provide a reduced jsFiddle test case to help us assess your ticket!
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, I've created this boilerplate: http://jsfiddle.net/rwaldron/da3nM/ Open the link and click to "Fork" in the top menu.