I want to remove first character from link's text with jQuery.
<span class="test1"> +123.23 </span>
<span class="test2"> -13.23 </span>
I want to remove the "+" and "-" from with jQuery.
Output:
<span class="test1"> 123.23 </span>
<span class="test2"> 13.23 </span>