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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:16:43+00:00 2026-05-20T05:16:43+00:00

I have several div tags containing simple html/css content and I need a simple

  • 0

I have several div tags containing simple html/css content and I need a simple way for a viewer to click a link ‘Slide 1’ and the first div tag for that slide become visible, then they click slide 2 and the second div tag is visible, and so on.

i tried using timelines in Dreamweaver but that seems like overkill and far too complex. So is pulling in the whole YUI library. Just a basic, brute force, make visible/invisible when a link is clicked is all we need.

so the setup is

     <LINK_SLIDE1>  <LINK_SLIDE2>  <LINK_SLIDE3>
<div class="slide" id="slide1">
  <p>Welcome etc etc etc</p>
</div
<div class="slide" id="slide2">
  <p>Overview etc etc etc</p>
</div
<div class="slide" id="slide3">
  <p>Summary etc etc</p>
</div

And I’m looking for some tips on how to implement the LINKs to toggle the visiblity of each div tag on/off. One problem I’m worried about is if a user doesnt have javascript enabled, can we handle that case too.

  • 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-20T05:16:44+00:00Added an answer on May 20, 2026 at 5:16 am

    The basic flow when the user clicks the link should be:

    1. Hide all divs with the class ‘slide’.
    2. Show the div with the id “slideX” (where X is determined by the link clicked).

    You can do this by adding event listeners to each link, then figuring out by which link was clicked, which slide to show. For problems like this using the rel attribute in the link is a quick way to store this info.

    Here’s an example using no framework whatsoever, and I haven’t tested it. Just for an example.

    var slides = document.getElementsByClassName('slide');
    function showSlide(e) {
        var toShow = e.target.getAttribute('rel');
        for (var i = 0, len = slides.length; i < len; i++) {
            slides[i].style.display = 'none';
        }
        document.getElementById(toShow).style.display = 'block';
        e.preventDefault();
        return false;
    }
    
    var links = document.getElementsByClassName('slide-link');
    
    for (var i = 0, len = links.length; i < len; i++) {
        links[i].addEventListener('click', showSlide, false);
    }
    

    and example HTML to go with it:

    <a href="#" class="slide-link" rel="slide1">Welcome</a>
    <a href="#" class="slide-link" rel="slide2">Overview</a>
    
    <div class="slide" id="slide1">
        <p>Welcome etc etc etc</p>
    </div>
    <div class="slide" id="slide2">
        <p>Overview etc etc etc</p>
    </div>
    

    Hopefully that can get you on the right track.

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

Sidebar

Related Questions

If you have several div s on a page, you can use CSS to
I have an absolutely positioned div containing several children, one of which is a
I have several Div tags on a page which are dynamic, i.e. depending on
Imagine that you have several links on a page. When you clicked, a div
I have several ASP:TextBox controls on a form (about 20). When the form loads,
I have several RequiredFieldValidators in an ASP.NET 1.1 web application that are firing on
I have several tables whose only unique data is a uniqueidentifier (a Guid) column.
We have several jobs that run concurrently that have to use the same config
I have several old 3.5in floppy disks that I would like to backup. My
We have several wizard style form applications on our website where we capture information

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.