I have been playing around with Jquery but I got stuck in this point and to solve it I have this doubt.
I would like to put all these anchor elements inside a div that I want to create.
<td class="cont-mod-none-options" valign="top" align="right">
<a href="test1">copy</a>
<a href="test2">cut</a>
<a href="test3">
<img src="/images/edit.png" width="28" height="12" border="0">
</a>
<a href="test4">
<img src="/images/pic.png" width="12" height="12" border="0">
</a>
</td>
Is there any way to create a div element and put all these elements inside that div? Like this:
<td class="cont-mod-none-options" valign="top" align="right">
<div>
<a href="test1">copy</a>
<a href="test2">cut</a>
<a href="test3">
<img src="/images/edit.png" width="28" height="12" border="0">
</a>
<a href="test4">
<img src="/images/pic.png" width="12" height="12" border="0">
</a>
</div>
</td>
So, how many possibilities do I have to move that?