I'm trying to prepend a div and load content in it with AJAX but the div remains empty

$('#primary').fadeOut('slow', function(){
        $('#primary').prepend('<div id="content"/>', function(){
            $('#content').load(link+' #content', function(){
                $('#primary').fadeIn('slow');
            });
        });
    });
link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

prepend doesn't have a callback, it's an immediate change. Try this:

$('#primary').fadeOut('slow', function(){
    $('<div id="content"/>').prependTo('#primary')
         .load(link+' #content', function(){
            $('#primary').fadeIn('slow');
        });
});
link|improve this answer
It works after removing the unnecessary }); thanks – Gab Feb 18 at 4:24
feedback

The .prepend method doesn't take a callback, because it isn't asynchronous.

You can pass a function as the first argument, but it isn't as useful for prepending to only one element.

Here's your code fixed.

$('#primary').fadeOut('slow', function(){
    var content = $('<div id="content"/>'),
        primary = $(this);
    primary.prepend( content );
    content.load(link + ' #content', function(){
        primary.fadeIn('slow');
    });
});
link|improve this answer
feedback

Try something like the following:

$('#primary').fadeOut('slow', function(){
    var primary = this;
    $('<div id="content"/>')
        .prependTo(primary)
        .load(link+' #content', function(){
            $(primary).fadeIn('slow');
        });
    });
});

The .prepend() method doesn't take a callback. I've used .prependTo() instead (which also doesn't take a callback) because it keeps the context so then the .load() call can be chained.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.