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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:57:56+00:00 2026-05-30T02:57:56+00:00

I have a ul nav. I need to show div content when the Resources

  • 0

I have a ul nav. I need to show div content when the “Resources” li is clicked and make “Resources” li active. Then when the div content is clicked to close, hide div content and make li not active. I’m not sure how to go about doing this so any insight would help.

Click this li item, make active:

<li><a href="">Resources</a></li>

Show this div content

<div id="pdftab">Some content</div>

Thanks so much

  • 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-30T02:57:57+00:00Added an answer on May 30, 2026 at 2:57 am

    Without having knowledge of your page markup I can just give you a hint. Something like this would work for you.

    $('li a').click(function(){
       $('#pdftab').show();
       $(this).parent().addClass('active');
       return false;
    });
    
    $('#pdftab').click(function(){
       $(this).hide();
       $('li').removeClass('active');
    });
    

    Define the active class styles

    .active{
       //add required styles
    }
    

    You can use addClass/removeClass to add/remove classes from dom elements. Calling .parent() on a jQuery object gets the parent element.

    Update:

    Based on your markup from

    $('#navlist li:eq(1) a').click(function(){
       $('#pdftab').show()
                   .animate({left: '+=340px'}, 1200);
       $(this).parent().addClass('resourceactive');
       return false;
    });
    
    $('#pdftab').click(function(){
       $(this).hide();
       $('#navlist li:eq(1)').removeClass('resourceactive');
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code $(#nav-mail).mouseenter(function(){ $(#dropdown_mail).show(); }); $(#dropdown_mail,#nav-mail).mouseleave(function(){ $(#dropdown_mail).hide(); }); and I am
I have a very basic hide/show div function set up for when people click
I have nav code like this in my HTML file: <div id="center_links"> <ul> <li><a
I have a simple nav made up of the following HTML; <div class=inner> <div
In my view I need to have two left buttons on my nav bar.
Im new to jQuery and need a litte help. I have created a nav
I have this jquery: $('.tbl-link').click(function(){ $('.tbl-content').animate({ opacity: 'show', //height: '+=300px', marginTop: '330px' }, 1200).css({
I need to hide all list elements, but only show one at a certain
I have nav buttons on this site: http://www.dermatologypartners.com which have rounded corners, a gradient,
I have a nav button added by myself. when click it I use: $(#+gridId).setColProp('myColumn',

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.