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

  • SEARCH
  • Home
  • 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 8935463
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:59:09+00:00 2026-06-15T09:59:09+00:00

I have a div and inside it i want to display 3 texts one

  • 0

I have a div and inside it i want to display 3 texts one at a time. Like windows 8 metro theme. I have three divs like this :

<div id='a'> Text 1</div>
<div id='b'> Text 2</div>
<div id='c'> Text 3</div>

and another main div which wraps all these. I want to display one div at a time inside the wrapper without any occurrence of the event from bottom to top and the new one slides over the other.

PS: i have seen how to do it using image and css. But i want to display the text through html not image, is there any way of doing this using jquery? Thank you.

  • 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-06-15T09:59:11+00:00Added an answer on June 15, 2026 at 9:59 am

    A basic example: http://jsfiddle.net/rNcNA/

    HTML:

    <div id="container">
        <div class="content">Some content here</div>
        <div class="content hidden">Other content here</div>
        <div class="content hidden">Yet more content here</div>
    </div>​
    

    JavaScript:

    $(document).ready(function() {
        var interval = 2000; // 2 seconds
        var contents = $('#container').find('.content');
        var index = 0;
        var display = function(index) {
            $('.content:visible').fadeOut('fast', function() { $(contents[index]).fadeIn(); });
            index += 1;
            if (index > contents.length-1) {
                index = 0;
            }
            setTimeout(function() { display(index) }, interval);
        }
    
        display(index);
    });​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have 3 divs aligned inside a container div, something like this:
I have a page which essentially looks like this: <div id=foo> <a>One</a>, <a>Two</a>, <a>Three</a>,
I want to append a div inside a div which have many divs inside
I have some divs floating inside another one and I want to align them
I have an html paragraph (inside a div) in which I want to display
I have a div set up something like this: <div id=test> <p>Hello</p> <p style=display:
i want to have an element inside a div set to height 100%. The
I want to have the link inside the DIV instead before. I want to
I have old text inside a div. I want that text to fly out
I have the following function that I only want to run inside <div id=imgWrapper>

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.