Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6141605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:16:26+00:00 2026-05-23T18:16:26+00:00

I am a bit new to programming in jQuery/Javascript and am having some issues

  • 0

I am a bit new to programming in jQuery/Javascript and am having some issues showing/hiding a series of headers in a div tag (container). The script code with attempted callback is:

$(document).ready(function(){
    $('<h1>Text1</h1>').hide().prependTo("#container").fadeIn(2000, function(){
        $("#container h1").fadeOut(2000, function(){
            $('<h1>Text2</h1>').hide().prependTo("#container").fadeIn(2000, function(){
                $("#container h1").fadeOut(2000, function(){
                    $('<h1>Text3</h1>').hide().prependTo("#container").fadeIn(2000, function(){
                        $("#container h1").fadeOut(2000, function(){
                            $('<h1>Text4</h1>').hide().prependTo("#container").fadeIn(2000);
                        });
                    });
                });
            });
        });
    });
});

I basically want it to dislay Tesxt1 header with a fadein, then fadeout, then desplay text2 with a fadein and fadeout. Text4 is the last one and should only have a fadein without fadeout. Without the callback functions, everything is executed simultaneously and when they are added (incorrectly) above, later texts are prepended multiple times.

Thank you very much for your time.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:16:27+00:00Added an answer on May 23, 2026 at 6:16 pm

    Add and hide your elements first and then animate them.

    jsFiddle

    $(document).ready(function(){
        var text1 = $('<h1>Text1</h1>').hide().prependTo("#container");
        var text2 = $('<h1>Text2</h1>').hide().prependTo("#container");
        var text3 = $('<h1>Text3</h1>').hide().prependTo("#container");
        var text4 = $('<h1>Text4</h1>').hide().prependTo("#container");
        text1.fadeIn(2000, function(){
            text1.fadeOut(2000, function(){
                text2.fadeIn(2000, function(){
                    text2.fadeOut(2000, function(){
                        text3.fadeIn(2000, function(){
                            text3.fadeOut(2000, function(){
                                text4.fadeIn(2000);
                            });
                        });
                    });
                });
            });
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Thanks for reading. I'm a bit new to jQuery, and am trying to make
I'm a bit new to database programming in general, and even newer to Entity
I'm really new to C programming, although I have done quite a bit of
A bit new with WPF...It seems like not matter what I change with horizontal
I am a bit new to Perl, but here is what I want to
I'm a bit new to WCF and I don't think I completely understand what
I'm setting up a new 64 bit machine to run as a build server.
The following bit of code catches the EOS Exception using (var reader = new
I'm fairly new to the Zend Framework and MVC and I'm a bit confused
I have a bit of code that looks like this: text = reg.Replace(text, new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.