I render some new content with .html() after ajax call into my site.

$.getJSON(scriptURL, $("#domainForm").serialize(), function(data) {
  $("#checkedDomain").html(data['html']) 
});

Now. How can I bind an event handler to div tags in that replaced html without including the script again? now the html the I render into my site looks like this:

<script type="text/javascript" src="myScript.js"/>
<div id="tagWithHandlerOn"/>someButton</div>

I want to get rid of the <script> Tag because it's e redeclaration and if I load the same content into that tag again 2 scripts gonna be loaded. Any hint?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Try using jQuery.live()

link|improve this answer
You beat me by seconds :) – TDaver Feb 15 '11 at 12:43
@TDaver - Sorry... ;-) – Jakub Konecki Feb 15 '11 at 12:44
Thx! That really helped! – Sweleck Feb 15 '11 at 14:42
feedback

$("#tagWithHandlerOn").live(event,handler) might just do the trick

link|improve this answer
Thank you also very much! – Sweleck Feb 15 '11 at 14:42
feedback

Your Answer

 
or
required, but never shown

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