Search and Top Navigation
#2626 closed bug (fixed)
Opened March 31, 2008 10:22PM UTC
Closed April 01, 2008 01:24PM UTC
Last modified February 26, 2009 12:03PM UTC
[UI Base] overridden remove should trigger event on descendant elements
| Reported by: | scottgonzalez | Owned by: | paul |
|---|---|---|---|
| Priority: | major | Milestone: | 1.5 |
| Component: | ui.core | Version: | 1.2.3 |
| Keywords: | ui base remove | Cc: | |
| Blocked by: | Blocking: |
Description
Imagine the following code:
<div id="foo">
<div id="bar"></div>
</div>
$(document).ready(function() {
$('#bar').draggable();
$('#foo').remove();
});
The draggable plugin would never know that #foo was removed. See attached patch.
Fixed in [5174].