Good morning, gentlemen. There is a table where data, for filling this table, is taken from the MySQL database. But there is one empty field "Comments" on which you can click the mouse and enter any comment to any record. This is done using the new HTML5 feature <td id = "editable" contenteditable = "true" > </ td>. At first I wanted to save comments using JavaScript and localstorage, but I had to abandon it, because the client will work with the application on different computers. How do I save comments in the MySQL database? For clarity - http://www.devhelper.ru/parser/
- 2DB MySQL has nothing to do with it. intercept the input event in the elements, add to the write queue and send ajax, here's an example of intercepting the event on jQuery - everything works fine. - zb '
- oneajax, precisely ajax - sinedsem
|