Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.2.0
-
None
Description
LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove() because the remove function property will have been purged, thus:
element.remove();
needs to be
Element.remove(element);