| | |
Get all children and their childeren - not innerHTML
Please support our JavaScript / DHTML / AJAX advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
•
•
I need to get all children of a DIV and their children too. I mean I need to get the HTML text of a DIV but I don't like to use innerHTML since it does not support the values of inputs in many browsers. How can I do that?
JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
<script language="JavaScript"> function test(){ var listOfChildNodes = document.getElementById('IDofTheDiv').childNodes; var numberOfChildNodes = listOfChildNodes.length; var str=""; for(i=0;i<numberOfChildNodes;i++){ str += listOfChildNodes[i].tagName+"\n";// this is the way you access childNodes ... tagName is just for example purpose. } alert(str); } </script> <div id= "IDofTheDiv"> <span></span> <p></p> <a></a> </div> <a href="javascript:test()">Click Here</a>
This is NOT what you exactly want .... but hope this would be of your help.
Regards ...
IF SOMEONE FEELS THAT THEY HAD NEVER MADE A MISTAKE IN THEIR LIFE, THEN IT MEANS THEY HAD NEVER TRIED A NEW THING IN THEIR LIFE
![]() |
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: using javascript to alter css of iframe div
- Next Thread: Javascript ad rotator
| Thread Tools | Search this Thread |
acid2 ajax ajaxexample ajaxjspservlets array browser bug captchaformproblem cart checkbox child class close codes cookies createrange() cursor date debugger dependent disablefirebug dom dropdown editor element embed engine enter events explorer ext file firefox focus form forms frameworks getselection google gxt hiddenvalue highlightedword hint html ie7 ie8 iframe images internet java javascript javascripthelp2020 jquery jsf jsfile jsp jump libcurl maps masterpage math media menu object onerror onmouseoutdivproblem onreadystatechange parent paypal pdf php position post programming progressbar prototype rated redirect runtime safari scale scriptlets scroll search security session shopping size software star starrating stars synchronous toggle unicode variables web webservice wysiwyg \n





