how to get the child node in div using javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T07:59:32Zhttp://stackoverflow.com/feeds/question/629614http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/629614/how-to-get-the-child-node-in-div-using-javascript2how to get the child node in div using javascriptKhushi2009-03-10T10:35:34Z2009-03-12T13:50:56Z
<p>Below is the structure of my div:</p>
<pre><code><div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a"
onmouseup="checkMultipleSelection(this,event);">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="width:50px; text-align:left;">09:15 AM</td>
<td style="width:50px; text-align:left;">Item001</td>
<td style="width:50px; text-align:left;">10</td>
<td style="width:50px; text-align:left;">Address1</td>
<td style="width:50px; text-align:left;">46545465</td>
<td style="width:50px; text-align:left;">ref1</td>
</tr>
</table>
</div>
</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 & Regards,
Khushi</p>
http://stackoverflow.com/questions/629614/how-to-get-the-child-node-in-div-using-javascript/629622#6296222Answer by Marius for how to get the child node in div using javascriptMarius2009-03-10T10:38:22Z2009-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#6300251Answer by KooiInc for how to get the child node in div using javascriptKooiInc2009-03-10T12:57:15Z2009-03-10T12:57:15Z<p>If you give your table a unique id, its easier:</p>
<pre><code><div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a"
onmouseup="checkMultipleSelection(this,event);">
<table id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a_table"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="width:50px; text-align:left;">09:15 AM</td>
<td style="width:50px; text-align:left;">Item001</td>
<td style="width:50px; text-align:left;">10</td>
<td style="width:50px; text-align:left;">Address1</td>
<td style="width:50px; text-align:left;">46545465</td>
<td style="width:50px; text-align:left;">ref1</td>
</tr>
</table>
</div>
var multiselect =
document.getElementById(
'ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a_table'
).rows[0].cells,
timeXaddr = [multiselect[0].innerHTML, multiselect[2].innerHTML];
//=> timeXaddr now an array containing ['09:15 AM', 'Address1'];
</code></pre>