Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
whats $(lastrow) for? – Milind Anantwar Dec 28 '12 at 6:39
Is it possible to put a jsfiddle? – hkutluay Dec 28 '12 at 6:57
it is a row of my table , which contain image button. – Durgesh Dec 28 '12 at 7:00
try this javascript document.getElementById('delete').setAttribute('onclick','Comment_Delete(event,‌​1048)') – karthik Dec 28 '12 at 7:06

2 Answers

Try this,

$(LastRow).find('#delete').live('click', function() { Comment_Delete(event,cID ) } );
share|improve this answer
it is not working – Durgesh Dec 28 '12 at 6:55
thanks alot friends now it is working. $(LastRow).find('#delete').attr('onclick','Comment_Delete(event,'+cID+')') – Durgesh Dec 28 '12 at 7:51

Have you tried this way:

$(document).find('#delete', LastRow).on('click', Comment_Delete('event',cID));

and this:

$(document).on('click', '#delete' Comment_Delete('event',cID));
share|improve this answer
$(document).find('#delete', LastRow).on('click', Comment_Delete('event',cID)); TypeError: Object [object Object] has no method 'on – Durgesh Dec 28 '12 at 7:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.