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 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.
I have this jquery: $('.tbl-link').click(function(){ $('.tbl-content').animate({ opacity: 'show', //height: '+=300px', marginTop: '330px' }, 1200).css({
I have a nav bar with children unordered lists nested under the main navbar
I have the following Nav: <li id=categories> <ul> <li class=cat-item cat-item-8 current-cat><a href=#>Link</a> <ul>
I want to have my list (nav) align to the center of an image
I have a basic website nav layout that looks like this: <li class=folder parent_folder>
I have a Document class, Intro class and Nav class. The Intro class runs
I have a small multiview app. It consists of a UITabBarController with a nav

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.