[jQuery] jQuery Not Working Inside .load-ed Content
Got it working with some slight modifications to Gilles' code:
function assignClicks(oSrc) {
oSrc = $(oSrc) || $(document);
oSrc.find("a").click(function() {
$("div").load("template.html", function(oRes) {
assignClicks(oRes);
});
return false;
});
};
--
Best Regards,
Nate Wienert
www.gamegum.com
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/