Jump to content

jQuery Loading Content Into Div Not Working


tomtimms

Recommended Posts

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;
        
    });
    
    
});

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.