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

The Archive Base Latest Questions

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

Are there any js/jquery scripts out there like this one: http://jqapi.com A left menu

  • 0

Are there any js/jquery scripts out there like this one:

http://jqapi.com

A left menu that changes the content on the right, with the ability to search it.

  • 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-16T00:06:44+00:00Added an answer on May 16, 2026 at 12:06 am

    Someone posted almost this exact question a few minutse ago and then deleted the post before I could submit my answer. Was that you? Either way, I’ll skip the bitching and just answer your question.

    Here goes.

    Assuming that you want to just update the visible contents or your page without loading a different one (either fully or through AJAX), you could accomplish this with a simple “tab” script — just think of your left sidebar menu as a folder’s tabs, with the contents of the folder being on the right.

    We’ll call your left sidebar’s menu the “tab console” and your right-side main container the “tab pane.”

    Let’s say your tab console’s html looks something like this:

    <ul id="tab_console">
        <li id="first"><a href="#">My First Page</a></li>
        <li id="second"><a href="#">My Second Page</a></li>
        <li id="third"><a href="#">My Third Page</a></li>
    </ul>
    

    … and your tab pane’s lookw like this:

    <div id="tab_pane">
        <div id="page_first"></div>
        <div id="page_second"></div>
        <div id="page_this"></div>
    </div>
    

    You would need to hide the various tab pane contents, so they don’t all show at once. You can do this with CSS:

    #tab_pane div {display: none;}
    

    Now we need a script to make it all work:

    $(document).ready(function(){                    // fires when browser loads your html
        $('#tab_console > li').click(function() {    // fires when a tab is clicked
            $('#tab_pane > div').hide();             // hides all tab contents
            $('#tab_pane > #page_' + $(this).attr('id')).show();   // show the selected tab
        });
    
        $('#tab_pane > li#page_first').show();     // load your default tab
    });
    

    That’s the basic idea, anyway. I would suggest reading an introductory tutorial to jquery if you are confused about any of this.

    EDIT – I should add that the example posted this time uses ajax requests. You can read the jquery documentation and change the code where applicable. It’s just as simple, if not more, to load content into your pane as it is to show static content.

    The jquery UI library offers a built-in tab plugin, but it’s rather cumbersome and, in my opinion, pretty pointless when it’s so simple to write your own solution.

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

Sidebar

Ask A Question

Stats

  • Questions 485k
  • Answers 485k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can access the bytes behind an NSString using the… May 16, 2026 at 7:44 am
  • Editorial Team
    Editorial Team added an answer You can do this SELECT BugNo, [Monday], [Tuesday], [Wednesday], [Thursday],… May 16, 2026 at 7:44 am
  • Editorial Team
    Editorial Team added an answer In my copy, Shift + Tab does this, as long… May 16, 2026 at 7:44 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.