I have my script here,
<script type='javascript'>
$(LastRow).find('#delete').attr('onclick','Comment_Delete(event,'+cID+')')
</script>
<input type="image" id="delete" border="0" src="../Resource/images/commentcross.jpg";" style="border-width:0px;">
i want control to be rendered as,
<input type="image" id="delete" border="0" onclick="Comment_Delete(event,1048);" src="../Resource/images/commentcross.jpg";" style="border-width:0px;">
i.e. i want to bind onclick event to my id=delete tag.i have used my live as,
$(LastRow).find('#delete').live('click','Comment_Delete(event,'+cID+')')
but gettintg error in chrome as TypeError: Cannot call method 'replace' of undefined
$(lastrow)for? – Milind Anantwar Dec 28 '12 at 6:39document.getElementById('delete').setAttribute('onclick','Comment_Delete(event,1048)')– karthik Dec 28 '12 at 7:06