how to get the child node in div using javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T07:59:32Z http://stackoverflow.com/feeds/question/629614 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/629614/how-to-get-the-child-node-in-div-using-javascript 2 how to get the child node in div using javascript Khushi 2009-03-10T10:35:34Z 2009-03-12T13:50:56Z <p>Below is the structure of my div:</p> <pre><code>&lt;div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a" onmouseup="checkMultipleSelection(this,event);"&gt; &lt;table cellpadding="0" cellspacing="0" border="0" width="100%"&gt; &lt;tr&gt; &lt;td style="width:50px; text-align:left;"&gt;09:15 AM&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;Item001&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;10&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;Address1&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;46545465&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;ref1&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p>Now, if i have the id of the div, how can i get the time and address for this div using JavaScript?</p> <p>Thanks &amp; Regards, Khushi</p> http://stackoverflow.com/questions/629614/how-to-get-the-child-node-in-div-using-javascript/629622#629622 2 Answer by Marius for how to get the child node in div using javascript Marius 2009-03-10T10:38:22Z 2009-03-12T13:50:56Z <pre><code>var tds = document.getElementById("ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a").getElementsByTagName("td"); time = tds[0].firstChild.value; address = tds[3].firstChild.value; </code></pre> http://stackoverflow.com/questions/629614/how-to-get-the-child-node-in-div-using-javascript/630025#630025 1 Answer by KooiInc for how to get the child node in div using javascript KooiInc 2009-03-10T12:57:15Z 2009-03-10T12:57:15Z <p>If you give your table a unique id, its easier:</p> <pre><code>&lt;div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a" onmouseup="checkMultipleSelection(this,event);"&gt; &lt;table id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a_table" cellpadding="0" cellspacing="0" border="0" width="100%"&gt; &lt;tr&gt; &lt;td style="width:50px; text-align:left;"&gt;09:15 AM&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;Item001&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;10&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;Address1&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;46545465&lt;/td&gt; &lt;td style="width:50px; text-align:left;"&gt;ref1&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; var multiselect = document.getElementById( 'ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a_table' ).rows[0].cells, timeXaddr = [multiselect[0].innerHTML, multiselect[2].innerHTML]; //=&gt; timeXaddr now an array containing ['09:15 AM', 'Address1']; </code></pre>