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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.