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 952183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:51:07+00:00 2026-05-15T23:51:07+00:00

I have a four divs all set display:none and on document.ready i am showing

  • 0

I have a four divs all set display:none and on document.ready i am showing the first div.. I have 4 link buttons link1,link2…link4… I showing div1 on link1 click and so on.. How to find which div is currently visible in jquery?

 <style type="text/css">
        .ContentDivs
        {
            width: 90%;
            height: 300px;
            border: solid 5px #404040;
            display:none;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <div>
            <a id="Link1" href="#">Link1</a> 
            <a id="Link2" href="#">Link2</a>
             <a id="Link3" href="#">Link3</a> 
             <a id="Link4" href="#">Link4</a>
        </div>
        <div id="div1" class="ContentDivs">
        DIv1
        </div>
        <div id="div2" class="ContentDivs">
        Div2
        </div>
        <div id="div3" class="ContentDivs">
        Div3
        </div>
        <div id="div4" class="ContentDivs">
        Div4
        </div>
    </div>
    <script type="text/javascript">
        $(document).ready(function() {
              $("#div1").show().fadeIn("slow");
        });
        $('#Link1').click(function() {
        $(".ContentDivs").fadeOut("fast");//find current div here?
            $("#div1").show().fadeIn("slow");
        });
        $('#Link2').click(function() {
        $(".ContentDivs").fadeOut("fast");//find current div here?
            $("#div2").show().fadeIn("slow");
        });
        $('#Link3').click(function() {
        $(".ContentDivs").fadeOut("fast");//find current div here?
            $("#div3").show().fadeIn("slow");
        });
        $('#Link4').click(function() {
        $(".ContentDivs").fadeOut("fast");//find current div here?
            $("#div4").show().fadeIn("slow");
        });
    </script>

See the effect here http://jsbin.com/umode4/edit

  • 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-15T23:51:08+00:00Added an answer on May 15, 2026 at 11:51 pm

    with lesserr codes, you could do it this way…

    jQuery

    <script type="text/javascript">
        $(document).ready(function() {
              $("#div1").show().fadeIn("slow");
        });
        $('.links a').click(function() {
            $(".ContentDivs:visible").fadeOut("fast");//find current div here?
            $("#div" + ($(this).index()+1)).show().fadeIn("slow");
        });
    </script>
    

    html

    <div>
        <div class="links">
            <a id="Link1" href="#">Link1</a> 
            <a id="Link2" href="#">Link2</a>
            <a id="Link3" href="#">Link3</a> 
            <a id="Link4" href="#">Link4</a>
        </div>
        <div id="div1" class="ContentDivs">
            DIv1
        </div>
        <div id="div2" class="ContentDivs">
            Div2
        </div>
        <div id="div3" class="ContentDivs">
            Div3
        </div>
        <div id="div4" class="ContentDivs">
            Div4
        </div>
    </div>
    

    demo

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a set of divs eg: <div class=wrapper> <div class=uct_attr data-tags=one two three
I have 5 divs in my page. Father div container includes four child div.
I have four divs contained in another div, and I want the four inner
I have four divs that are draggable. And a div where I drop the
I have four divs with custom Attributes like: <div marker=A>A1</div> <div marker=A>A2</div> <div marker=B>A3</div>
I have four flags Current = 0x1 Past = 0x2 Future = 0x4 All
I have four divs in a row and whichever one you click on, the
I am setting up a page with jQuery's Cycle plugin and have four divs
I have an issue with my divs. I currently have four divs in html
how to get the css floating property to work with four divs? I have

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.