Posts by Alan • 31 points
1 post
-
3
votes2
answers1245
viewsA: Take the value of a <TD> tag by jquery and send to Controller method
You can know which td was clicked using "this" within the callback function: $('table td').on("dblclick", '.clique', function() { alert($(this).text()); }) Another example with ajax: $('table…