<table>
<tr>
<td class="valor"> 33</td>
<td class="valor"> 88</td>
<td class="valor"> 55</td>
<td class="valor"> 36</td>
<td class="valor"> 79</td>
<td class="valor"> 35</td>
</tr>
</table>
I need to put the percentage symbol after the number
<script type="text/javascript">
$(document).ready(function(){
var valor = $('.valor').html();
$('.valor').text(valor+'%');
});
</script>
I tried to do this but it changes all numbers to the first value