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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:44:34+00:00 2026-05-15T01:44:34+00:00

I have a page in which there are multiple hrefs. i want to find

  • 0

I have a page in which there are multiple hrefs. i want to find out which href is clicked and based on that href click I want to show and hide a div?

  • 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-15T01:44:35+00:00Added an answer on May 15, 2026 at 1:44 am

    I’m going to assume you have control over the href’s here and you want to have the simplest markup possible, in that case you can do something like this:

    <a href="#div1">Toggle Div 1</a>
    <a href="#div2">Toggle Div 2</a>
    
    <div id="div1" class="toggleDiv">Div 1 Content</div>
    <div id="div2" class="toggleDiv">Div 2 Content</div>
    

    Then to open/toggle a div based on the href, or more specifically the hash property, you can do this:

    $("a").click(function() {
        $(".toggleDiv").not(this.hash).hide();
        $(this.hash).toggle('fast');
    });​​​
    

    This toggles the corresponding <div> with the matching ID == href minus the hash and hides the other <div> elements if that’s what you’re after…you do this by just giving them a common class and hide all those except the one related to the current link.

    You can view a demo here to see if it’s what you’re after.

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

Sidebar

Related Questions

I have a page which has an Iframe. In that Iframe, there are six
I have a page which displays my database information. Through each loop, there is
I have to made a page which will send Email to Newsletter subscribers. There
There is a JSP page in which i have an ArrayList variable. I need
I have dynamic page. There are multiple checkboxes & I am using this script
I have a multiple html tables on a page which each have a header
There is a page in which there are multiple rows with a 'Change Status'
I have a grid on a page which I want to be sortable on
I am building a page that will have multiple instances of a tag such
I have some page content which contains multiple occurrences of the below line of

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.