posted 20 years ago
Hi,
the following is a well-formed xhtml file:
<td>
<input type="text" name="n1" value="v1"/>
<input type="text" name="n2" value="v2"/>
<input type="text" name="n3" value="title"/>
</td>
I want to transform it into a plain text file such as:
title
v1
v2
That means I need to move third element to the top,
how can I do it? It took a long while with no answer.
regards