How can I use jQuery to click on a table cell and edit its contents. There is a particular column which contains several paragraphs of data, so if possible, have a pop up wi
jEditable plugin can help you edit your table in place.
$(document).ready(function() { $('td').editable('http://www.example.com/save.php'); });