I'd like to add to my <td>
element JS event listener that will be triggered when the page is rendered (or loaded) to the DOM and the TD contains its innerHTML value.
something like:
<script>
function manipulate(field){
field.value = field.value+'_done';
}
</script>
<td onRender=manipulate(this)>Hello World</td>
I can't use onLoad because it can be used in <body>
only to my understanding
Is there any way to do it?