Tagged Questions
4
votes
1answer
411 views
Why does removeChild need a parent node?
After answering this question I am left wondering why removeChild needs a parent element. After all, we could simply do
node.parentNode.removeChild(node);
As the parent node should be always ...
3
votes
4answers
178 views
JavaScript removeChild help
I am writing a simple little piece of code to draw pixels wherever the mouse is in a box. I also want to have a clear button. Drawing works fine, but I can't seem to get the clear button to work. Here ...
2
votes
1answer
31 views
Does removing a script element remove its functions from memory?
var scripts = document.getElementsByTagName("script");
for (var i=scripts.length; i--; ){
(scripts[i]).parentNode.removeChild(scripts[i]);
}
Someone asked me this question and my first thought ...
2
votes
1answer
164 views
JavaScript: How to remove tags from node?
In a previous question someone put me on to "rangy" http://code.google.com/p/rangy/. It's interesting even if I don't fully understand it. I am not a JavaScript person. However, I have managed to do ...
2
votes
2answers
204 views
How do you undo “surroundContents” in javascript?
I'm writing a script that needs to move a wrapping node element around on the page. I find that when I do this, I remove the previously wrapped children. How do I unnest the children of a node, so ...
1
vote
2answers
104 views
Count how many UL Elements there are in a Div with Javascript?
I am dynamically adding UL elements to a DIV element. I would like to be able to count how many UL elements there are inside the DIV so that once all the ULs are removed dynamically I can delete the ...
1
vote
2answers
93 views
Remove an element from the DOM from reference to element only
This is either very simple or impossible.
I know I can do this:
var element = document.getElementById('some_element');
element.parentNode.removeChild(element);
...but it feels messy. Is there a ...
1
vote
4answers
637 views
Does removeChild really delete the element?
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 ...
1
vote
2answers
78 views
removing child from a child
I am having trouble removing the child of a child of an object created using JS.
Basically once I create a comment object I appendChild(replyBox) to it. Inside the replyBox there is a cancel button ...
1
vote
2answers
148 views
removeChild <script> before JavaScript executes
I have a local file that I am displaying in an iframe. I cannot alter the file (or any files included- css, script, etc). I need to remove all of the tags from the file. This is easy enough, but I ...
1
vote
3answers
770 views
Remove dom element without knowing its parent?
Is it possible to remove a dom element that has no parent other than the body tag? I know this would be easy with a framework like jquery, but I'm trying to stick to straight javascript.
Here's the ...
0
votes
3answers
70 views
removeChild in javascript/ DOM is not working correctly when more than one is present in the function
UPDATE:
Here's the JsFiddle link:
http://jsfiddle.net/zAVFv/
It seems to be not working in JsFiddle, but guess it serves to show the whole code - html, css and Js.
I am facing a very weird situation ...
0
votes
3answers
88 views
How do you remove and hide HTML elements in plain Javascript?
I have this HTML:
<body>
<div id="content-container" style="display:none">
<div>John</div>
</div>
<div id="verifying">
<div ...
0
votes
2answers
114 views
why does removeChild in Javascript always removes the last child and not the one it got the id from?
i have four divs with the eventlistener onclick,
calling a js function which just does the following :
this.parentNode.removeChild(this);
i expect it to remove the div i clicked on, but it does ...
0
votes
4answers
99 views
Remove children by class not working in Internet Explorer
I have a script (helped out by @briguy37 Remove multiple elements with same name using removeChild?) that removes all the elements with a certain class name by using a for loop and using removeChild. ...
0
votes
3answers
158 views
Remove multiple elements with same name using removeChild?
I have an elements with multiple elements inside. The elements inside all have the same name. Is there away to have a function remove all of them?
(refer to this question for example Remove multiple ...
0
votes
3answers
97 views
Remove multiple children from parent?
I have a bunch on elements with the same name that i am trying to remove at the same time with an onchange function.
Here is the javascript:
<script type="text/javascript">
function ...
0
votes
1answer
93 views
Removing and reinserting a DOM element onclick
I recently wrote a script in which I needed an element to move to the top when it was clicked on. I used, and have been using for years, the following code in the onclick function:
...
0
votes
2answers
433 views
Javascript .removeChild & .appendChild not working
I'm trying to get a very simple Javascript function to work that will change one image for another using .removeChild and .appendChild. My code is as follows:
<html>
<head>
<script ...
0
votes
2answers
420 views
Javascript removeChild array
this looks simple enough but I just can't get it to work. I could add DOM elements but I just can't remove them when using an array.
<script language="javascript">
fields = 0;
count = 0;
...
0
votes
2answers
656 views
Dynamically remove rows in DOM table
I am having trouble with the removeChild function in the loop below and couldnt really find good examples for it? what is wrong with my code?
var univArray = new Array(
{name: "Stanford ...
0
votes
1answer
171 views
Dynamically Creating and Removing Elements in javascript
I was thinking im comfortable with adding and removing elements in js till two days ago when i ran into this trouble.
Ok , pls this is my problem:
I was trying to dynamically create divs, append to ...
0
votes
2answers
320 views
Automating event handler remove when clearing dom node children
Is there a way to introspect a dom node to see if there are event handlers attached, so you can effectively write a safe function to clear out the dom nodes without worrying about memory leaks left by ...
0
votes
2answers
250 views
how to remove dynamically loaded images in javascript
I'm loading in 3 images (named 1.jpg, 2.jpg, 3jpg) dynamically to 3 divs called "div1", "div2" and "div3".
function loadImages() {
for (var i = 1; i < 3; i++ ) {
var img = ...
0
votes
2answers
942 views
JavaScript RemoveChild logic/question
I'm using Dojo Drag and Drop. When a user adds an item to a container (div dojoType='dojo.dnd.Source') then I need to get that data into a form so I can later process it on a server when the user ...