title: Jspreadsheet | Examples | Add comments in your jquery table keywords: Jexcel, jquery, javascript, cell comments, jquery table description: Manage a table cell comments [Back to Examples](/jspreadsheet/v2/examples) # Manage cell comments in your jquery table The most recent version the spreadsheet plugin brings the possibility to manage custom comments for each individual cells. By allowComments in the initialization, the user will be able to add comments in the rigth click contextMenu. It is also possible to manage your cell comments programmatically by the use of commands such as setComments or getComments, for example: | Method | Description | |-------------------------------------------------------------------------|--------------------| | $('#my1').jexcel('setComments', 'A1', 'This is the comments from A1'); | Set A1 comments | | $('#my1').jexcel('getComments', 'A1'); | Get A1 comments | | $('#my1').jexcel('setComments', 'A1', ''); | Reset A1 comments | ### Source code ```html
```