Hi – I have an inline jQuery function that selects the table cell data onclick. The jQuery part works well. I have added code snippet of jquery.
$(function(){ $("#myTable td").click(function() {
$row = $this.closest('tr');
case "name":
alert($row.find(".name").html());
break;
etc
Instead of displaying the name on the client –side alert message, I am trying to pass the clicked table column to php when the user clicks the button on HTML document. I am new to php and it could be easier to fix. I have searched a lot and no luck. Please help me.
Thanks in advance.