Editing an HTML table cell
html, javascript, jquery
Solution
There's no need to do your own code, a plugin for jQuery for this very purpose exists already. Try jEditable, it can do exactly what you need.
Their demo page has some nice examples:
http://www.appelsiini.net/projects/jeditable/default.html
Problem
I have a table with a few rows... I want to be able to select a row and click on modify and I should be able to make all the cells of that row editable... How would I make a cell editable in Javascript? And is it better to use Jquery?