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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:46:45+00:00 2026-05-26T06:46:45+00:00

I have a tabbed menu system and on tab click loads a specific page

  • 0

I have a tabbed menu system and on tab click loads a specific page into the tabs relevant div.

Currently I have a series of the following functions. A set for each tab and this makes for some pretty ugly code. Is there anything I can do to simplify and reduce the repetition?

Each “TAB” instance is the name of the tab that has been clicked. The {% url … %} section is a Django dynamic URL.

I was thinking that if the tab name and url were put into an array of sorts it would at least enable for all the functions to be created en masse. But is there away of simplifying it further?

Thank you for any help.

    function loadTABlog() {
        $("#TABlog").load("{% url list_TABlog person.id %}", function(response, status, xhr) {
            if (status == "error") {
                var msg = "Sorry but there was an error: ";
                $("#TABlog").html(msg + xhr.status + " " + xhr.statusText);
            }
        });
        return false;
    };
    $("#loadTABlog").click(function() {
        $("#TABlog").empty().html('<img src="{{ STATIC_URL }}loading.gif" class="ajaxloader" />');
        loadTABlog();
    });
  • 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-26T06:46:45+00:00Added an answer on May 26, 2026 at 6:46 am

    I’d try to make it data-driven. Something along the lines of

    var tabs = [
        {activator: "#loadTabLog",
         element: "#tabLog",
         url: "{% url list_tab_log 9000 %}"},
        ...
    ];
    

    And iterate through it, assigning handlers:

    for (var i = 0; i < tabs.length; ++i) {
        var t = tabs[i];
        $(t.activator).click(function() {
            $(t.element).empty().html("<img>");
            ...
            $(t.element).load(t.url.replace("9000", actual_user_id), ...);
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What i have is a tabbed page with 12 tabs (every tab is a
I have a 'tabbed' style web page where once the page loads each tab
I have a tabbed series of grids on a data preview page. I now
I have designed a tabbed page. I'm able to load forms in the tabs
I have a tabbed application and when I click on the second tab, an
This is my tabbed interface, I have a jsfiddle here . <div class=tabs> <!--
I have a page designed for tabbed page navigation. The top tabs are <li>
I have Tabbed Navigation here: http://jsfiddle.net/EghAt/ When I click Tab 1 it outputs all
I have a small tabbed navigation setup using CSS. When hovering over the tabs
I have a tabbed setup on the page and I want to automatically make

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.