I have the following Html code:
<tr>
<td><a href="#" class="block" serverid="@storedServerId"></a></td>
<tr/>
But how can I get the 'serverid' attribute's value to use in my jQuery script?
This is what I tried:
var srv= document.getElementById('storedServerId').value;
But it returns simple text not the vlaue!
Thanks,