Thanks ive used delegation to fix the links that are created by ajax, but i still cant seem to figure out how to update 2 div's using .load ajax function... at the moment i have:
$("#clickrate").fadeOut("fast"); $('#clickrate').load("http://www.site.com/mypage #clickrate", function () { $('#clickrate').fadeIn("slow"); }); but i want to also update another div,"userrate", i cant seem to do this... i tried this but it didnt work: $("#clickrate").fadeOut("fast"); $("#userrate").fadeOut("fast"); $('#clickrate,#userrate').load("http://www.site.com/mypage #clickrate,#userrate", function() { $('#userrate').fadeIn("slow"); $('#clickrate').fadeIn("slow"); }); Help appreciated, thanks