i append a text input into form by using javascript, after i removed it by removeNode, it disappear, document.forms["form"].length = 0, but i can still get it's obj by using document.forms["form"]["inputname"] (not return null)
why?
i append a text input into form by using javascript, after i removed it by removeNode, it disappear, document.forms["form"].length = 0, but i can still get it's obj by using document.forms["form"]["inputname"] (not return null)
why?
What browser do you use? Could you copy-paste code to be more specific?
Hi, I think you are having trouble with firefox. In IE your code seems to work without any problem.
For removeNode to work in both IE and FF you can write like this
var objectToRemove = document.getElementByID ( "your object to remove" );
var parentNode = objectToRemove .parentNode;
parentNode.removeChild ( objectToRemove );
Hope this helps
anyway, you have to use document.getElementById() to correctly operate with elements tree. Constructions like document.forms[] is very old IE-oriented. But supported by some browsers for backward compatibility.