$('#myTable').find('td').click(function() {
$('#meaningtextarea').val($("[type='hidden']", this).val());
});
I need to convert this event to below format. could you please help me with this.
$(document).on('click', '#element', function (evt) {
});