[jQuery] DOM manupulation problem
Hi guys,
i have a problem about DOM i hope some one can help me.
problem;
I get a xml file and manipulate it with javascript. As below I want to
get the html text in the <x> tag as html. however, with i javascipt i
can only read child by child but this is a problem because when the
html text is too long i can not read child by child.
<a>
<x>
<b>Some html text here</b>
<a href="">Link</a>
</x>
</a>
i need something like .html(); function of JQuery....
thanks for your help....