Does javascript cache DOM elements? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T01:33:59Zhttp://stackoverflow.com/feeds/question/544901http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/544901/does-javascript-cache-dom-elements0Does javascript cache DOM elements?Steven Oxley2009-02-13T06:18:21Z2009-02-13T06:42:41Z
<p>I'm using mootools to toggle the display (and existence) of two DOM elements in one of my forms. Then, I am using javascript to validate the form to make sure that all of the required fields were filled in. The problem is that the the browser seems to be caching the elements. For example, I have html like this:</p>
<pre><code><input name="inputbox" id="inputbox" type="text" />
<select name="selection" id="selection">...</select>
</code></pre>
<p>And the javascript for validation is something like this:</p>
<pre><code>if (form.inputbox != null && form.inputbox.value == "") {
//don't submit form
{
else if (form.selection != null && form.selection.value == 0) {
//don't submit form
}
</code></pre>
<p>Now, this works fine when the page is first loaded and the <code>input</code> element has been removed. However, when I click the button that replaces the <code>input</code> element with the <code>select</code> element, from then on the <code>form.inputbox</code> and <code>form.selection</code> in the javascript code contain the respective element as it was in its last state in the DOM - even if it is no longer in the DOM. So is the javascript caching the DOM and not updating the elements when they are removed from the DOM? What is going on here, and, more importantly, how should I go about fixing it?</p>
<p>Edit: I am using mootools to do the removing and replacing of the elements, the documentation for the respective functions can be found <a href="http://docs111.mootools.net/Native/Element.js#Element.remove" rel="nofollow">here</a> and <a href="http://docs111.mootools.net/Native/Element.js#Element.replaceWith" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/544901/does-javascript-cache-dom-elements/544912#5449120Answer by Steven Oxley for Does javascript cache DOM elements?Steven Oxley2009-02-13T06:27:01Z2009-02-13T06:27:01Z<p>Well, I can answer the second part of my question now: how to fix it. If you are using mootools, then use the dollar function (or getElementById might work) instead of using <code>form.selection</code> and <code>form.inputbox</code>:</p>
<pre><code>if ($("inputbox") != null && $("inputbox").value == "") {
//don't submit form
{
else if ($("selection") != null && $("selection").value == 0) {
//don't submit form
}
</code></pre>
<p>It works, but I don't have an explanation for why the other didn't...</p>
http://stackoverflow.com/questions/544901/does-javascript-cache-dom-elements/544951#5449511Answer by Zurahn for Does javascript cache DOM elements?Zurahn2009-02-13T06:42:41Z2009-02-13T06:42:41Z<p>Evaluating an element by name (form.elementName) when non-existent returns undefined. Evaluating the property value of an object ($('elementId')) returns null. Undefined and null are treated differently.</p>