How to Make HTML Content Editable without JavaScript / jQuery?

How to Make HTML Content Editable without JavaScript / jQuery?

Dear Colleagues,

My question is general and I do not know if it is possible to do that in Creator. Let's say that I have an html page with a simple table like

  1. <table>
  2.    <tr>
  3.        <td contenteditable="true">Hello!!</td>
  4.    </tr>
  5. </table>

As we know, HTML has an attibute called contenteditable, in which we can edit the data in our page. The problem is that if I change the text and then click the Print button, it returns 'Hello!!' and not the text which I last inserted. I think that this is because Zoho Creator does not support Javascript. Is there any other way to implement this?