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

  • SEARCH
  • Home
  • 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 4068142
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T16:20:18+00:00 2026-05-20T16:20:18+00:00

I have created my own tabs with hyperlinks and divs. im placing them within

  • 0

I have created my own tabs with hyperlinks and divs. im placing them within the sidebar.

im using jquerys .show() and hide() on relevant divs when a hypelink is clicked.

its working fine, however, i would like the last link/tab clicked to be remembered across the site as the user navigates.

how can i do this?

  • 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-20T16:20:19+00:00Added an answer on May 20, 2026 at 4:20 pm

    Your best bet would be to use a cookie to store the name of the active tab. Then, on page load, check the cookie with JS and use this as the basis for showing the correct tab and hiding the others.

    I would recommend the jQuery cookie plugin for setting and reading cookies:
    http://plugins.jquery.com/project/Cookie

    Your code may look something like this (quick sketch, so may not be free of syntax errors):

    MARKUP

    <ul id="tabs">
      <li id="tab-a">First tab</li>
      <li id="tab-b">Second tab</li>
      <li id="tab-c">Third tab</li>
    </ul>
    

    JAVSCRIPT

    //On Window load:
    if ($.cookie('activetab')) {
      var activetabId = $.cookie('activetab');
      $('#tabs li').removeClass('active');
      $('#'+activetabId).addClass('active');
    }
    
    //On tab click
    $('#tabs li')click(function(){
     var id =  $(this).attr('id');
     $.cookie('activetab',id);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an app with multiple tabs, each with its own layout. I
I have created my own repository under my hard disk using Apache Server and
I have created my own Tree implementation for various reasons and have come up
I have created my own Attached Property like this: public static class LabelExtension {
I have created my own customized lots of architecture including n-tier layers for different
I have created my own debugger application. It attaches to a process and creates
I have created my own button class called custom_btn. I created it on the
I have created blank Asp.Net-MVC 3 web application and want to write my own
I have created a custom list view, each row has it's own custom selector,
I have my own asp.net cookie created like this: var authTicket = new FormsAuthenticationTicket(

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.