I have a table like this I need to get the anchor tag value(class or id) from the table. In other words, how to get the anchor tag value using jQuery
<table class="kimztableclass" id="kimztableid">
<tr>
<a class="kimzanchorclass" id="kimzanchorid" >Kimz Value</a>
</tr>
</table>
I need something like this
$(document).ready(function() {
$('.mytableanchortagclass').editable({
.........do my coding stuff.................
}
}
});
});
In short - I need to get the anchor tag id/name inorder to proceed with my jQuery stuff.
Thanks, Kimz