Ok, this is killing me. I'm loading an external page with jquery:
var response = $.ajax({
url: "example.php",
dataType: "html",
async: false,
});
$("#content2").empty().prepend(response.responseText);
This part is working perfectly.
Now I know that if I I want to interact with the new content I would have to bind any new elements to an action for it to work...
$(".example").live("click",function(event){
//do something
}):
BUT, the problem is that the content that I am loading contains several .js files that contains LOTS of form validation.
Is there a way to just bind all of the new content to these external .js files?