I want take percent value property element with Jquery but I can't do it. My elements are:
<tr id="rows">
<td style="right:0%;"></td>
<td style="right:20%;"></td>
<td style="right:40%;"></td>
<td style="right:60%;"></td>
<td style="right:80%;"></td>
</tr>
I want get right value with percent sign. I'v used below method but returned value was pixel value:
$('#rows td').last().css('right');
Console show me this 772px