tomtimms Posted August 16, 2010 Share Posted August 16, 2010 you can see where my problem is at www.tomtimms.com/developer The problem I am having is that when I try and load a div into another div it pretty much will only work 1 time. If you click on the "Contact" link it loads the <div> contents of the new page into a div called "<content>". Now if you go and try and click the about us link it takes you straight to the about.html page instead of just loading the contents inside the div. Here is my code, if anyone can help I will be extremely helpful. $(document).ready(function() { $('#content a').live('click',function(){ var toLoad = $(this).attr('href')+' #content'; $('#content').hide('fast',loadContent); $('#load').remove(); $('#wrapper').append('<span id="load">LOADING...</span>'); $('#load').fadeIn('normal'); function loadContent() { $('#content').load(toLoad,'',showNewContent()) } function showNewContent() { $('#content').show('normal',hideLoader()); } function hideLoader() { $('#load').fadeOut('normal'); } return false; }); }); Quote Link to comment https://forums.phpfreaks.com/topic/210874-jquery-loading-content-into-div-not-working/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.