hy,
i want to retrieve the selected value
php
<table id="hor-minimalist-b">
foreach($tbl_ as $tb):
echo '<tr>';
echo '<td> '.$tb['nameGroup'].'</td>';
echo '<td><a href="#" id="UpdateGroup" value="'.$tb['idGroup'].'">update</a></td>';
echo '<td><a href="#" id="DeleteGroup" class="'.$tb['idGroup'].'">delete</a></td>';
echo '</tr>';
endforeach;
</table>
jquery
imade some code but it does not work
later test
$("#hor-minimalist-b").click(function(){
var c=$("#hor-minimalist-b").text();
alert(c);
});
it does not work