Does removeChild function really deletes the child node completely? Or it just removes the element being child of the specified parant node? If it doesn't really deletes the element, is there a way to delete the element completely?
| ||||
|
feedback
|
|
This will completely delete the node:
This will remove the node from the DOM so it's not visible but will save it so that you can insert it elsewhere:
| ||||
feedback
|
|
The But Javascript has garbage collection. This means that the node object itself will remain in existence as long as any variable refers to it. So you can assign a node to a variable, use The following code will remove a node, and wait 10 seconds before re-adding it to the tree (and thus, to the page):
This means that the node object hasn’t been deleted from memory, because there’s still a variable pointing to it (namely, Another case:
If, on the other hand, you don’t reassign the removed node to another variable, it can’t be accessed anymore (not via the document tree, since it’s been removed from there; and not via a JS variable); so Javascript will automatically purge it from memory:
Assigning the removed node to a variable, and then assigning | |||
|
feedback
|
|
removeChild removes the element from the dom, but it's also returned from the function in case you're doing the removal to re-insert it elsewhere. You'd have to kill that return value to really get rid of the removed node:
| |||||||||||||
feedback
|
|
If you want to really delete a dom element . removeChild alone is not enough. This is as per Steve Sounders who is the author of YSlow. You need to use delete | |||
|
feedback
|