How to wrap span tag

How to wrap span tag

Hi,

Please could you help me out to wrap arrow   ">" inside span tag using jquery. below is the html structure 



<div class="pos">
<span class="pos_bc" property="itemListElement" typeof="ListItem" style="background-color: rgb(255, 255, 170);">
>
<span class="pos_bc" property="itemListElement" typeof="ListItem" style="background-color: rgb(255, 255, 170);">
>
<span class="pos_bc" property="itemListElement" typeof="ListItem" style="background-color: rgb(255, 255, 170);">
-->
</div>

I want the output to be like this


<div class="pos">
<span class="pos_bc" property="itemListElement" typeof="ListItem" style="background-color: rgb(255, 255, 170);">
<span>></span>
<span class="pos_bc" property="itemListElement" typeof="ListItem" style="background-color: rgb(255, 255, 170);">
<span>></span>
<span class="pos_bc" property="itemListElement" typeof="ListItem" style="background-color: rgb(255, 255, 170);">
<span> --></span>
</div>

Looking fordward to your reply
Thank you.