Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Small AJAX issue. Please help me out guys Re: [Solved] Small AJAX issue. Please help me out guys

#79362
Capt Otis
Member

jQuery only applies itself on the page load. You need to tell it to reapply when you add something.
So after you load the ajax, you want something like

Code:
$(“#idOfWhereYouLoadAjax”).live(‘load’, function(){
//whatever you want to do
});

Look up .live() for jquery if that doesnt make sense.