jQuery remove() Remove this node and return its parent. Automatically removing all events attached to it. @param node @return parent or null
(DOMNode node)
| 265 | * @return parent or null |
| 266 | */ |
| 267 | public static void dispose(DOMNode node) { |
| 268 | if (node != null) |
| 269 | jQuery.$(node).remove(); |
| 270 | } |
no outgoing calls