I have a grid and in the last column I will have a link that will be following format:
id.1
id.2
id.3
id.4
I would like to click on the link
<a id="id."'.$row["id"].' href="#">
Jquery identifies the id so I can call a feature. How do I get the click event from the link?
Getting the button is quiet
$('#postar').click(function() {
How could I get the link click only by a piece of the "id"
$('#id').click(function() {