Add bullet to existing class

Add bullet to existing class

Here's what I have:
  1. <td class="ms-vb2"><a href="whatever">Text here</a>
 
What I need to do is add a bullet around the anchor tag so it looks like this
<td class="ms-vb2">
       <li>
            <a href="whatever">Text here</a></li>
 
Is there any way to do this using JQuery?

Uncle D