Hi!<br><br>I'm new to jdom and xml, so sorry if this is non sense.<br>I read a xml  template (a html to be true, transformed to XML using tidy) file from my client, and want to change all ocurrences of one text to something else. It will probably be inside some javascript, something like 
<br>&lt;a href=&quot;#&quot; onclick=&quot;javascript:openLink($REPLACE_THIS);&quot;&gt;<br><br>bu could be in the text of some &lt;script&gt; tag for example:<br>&lt;script&gt;<br>funcion onclick(){<br>&nbsp;&nbsp;&nbsp;&nbsp; opeanUrl(&quot;REPLACE_THIS&quot;);
<br>}<br>&lt;/script&gt;<br><br>There only one more thing: It needs to be inside some tag, the one that defines the link url:<br><br>&lt;chamada&gt;<br>1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;a href=&quot;#&quot; onclick=&quot;openLink($REPLACE_THIS);&quot;&gt;click here&lt;/a&gt;
<br>&lt;/chamada&gt;<br><br>&lt;chamada&gt;<br>2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;a href=&quot;#&quot; onclick=&quot;openLink($REPLACE_THIS);&quot;&gt;$REPLACE_THIS&lt;/a&gt;<br>
&lt;/chamada&gt;<br>
<br><br>Is there a way to do this with jdom API, without getting all Descendents from the tag &lt;chamada&gt; and looking inside its Text and Attributes ?<br>something like:<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Iterator chamadaIterator = root.getDescendants
(new ElementFilter(&quot;chamada&quot;));<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while (chamadaIterator.hasNext()) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Element chamadaTag = (Element) chamadaIterator.next();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;  chamadaTag.setTextReplacement(&quot;$REPLACE_THIS&quot;, &quot;
<a href="http://www.thinkgeek.org">http://www.thinkgeek.org</a>&quot;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br>I've searched the forum and found some ideas aboute html entities, but it seams to be not the case, since I have one value for the
<span class="def-word"> whole </span>document.<br><br>I no that it seeas to be lazyness :-)<br>But in fact I'm trying to avoid some desnecessary loop inside all elements, all texts from theese elements, and all attributes from theese elements.
<br><br>Thanks in advance,<br>Leonardo Barbosa<br><a href="mailto:lsbarbosa@gmail.com">lsbarbosa@gmail.com</a><br><br>