While experimenting with Jquery, I encountered a roadblock and now have this question in mind.
I wish to enclose all the anchor elements within a newly created div element.
<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 it possible to create a div element and nest these elements inside it? Like so:
<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, what are the available options for achieving this?