Forums

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

Home Forums JavaScript jQuery .load() problem Re: jQuery .load() problem

#69708
edgerow
Member

Found the solution…

Changed
jQuery("li a").click(function() {
to
jQuery("li a").live(‘click’, function(){

Found the solution here:

http://cakeqs.org/eng/questions/view/aj … loads_page

Hope this helps someone…

Thanks for the help aicos!