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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:04:19+00:00 2026-06-09T22:04:19+00:00

I have three table headers, each with ID’s: deadline_column , duration_column , and description_column

  • 0

I have three table headers, each with ID’s: deadline_column, duration_column, and description_column

Each <th> has an class of ‘headerSort’. What I’m trying to do right now is, once one of the headings are clicked: determine the column clicked, and then alternate between ascending and descending. The main trouble I’m having is going back to the default sort (ascending) when a new column is clicked. Right now I have:

$(document).ready(function(){

            var order;
            var column; 

            $('.headerSort').on('click', function(){
                var column = $(this).attr('id');
                if (order=='ascending'){
                    order = 'descending';
                } else {
                    order = 'ascending'; 
                }

                alert (order);
                // deadline_column
                // duration_column
                // description_column

                // switch(column){
                //  case 'deadline_column':
                //  break;

                //  case 'duration_column':
                //  break;

                //  case 'description_column':
                //  break;
                // }

            });

I can’t think up a way to do this that won’t come out being overly verbose.

  • 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-06-09T22:04:20+00:00Added an answer on June 9, 2026 at 10:04 pm

    What about something like this?

    $(document).ready(function(){
    
            var order;
            var column; 
    
            $('.headerSort').on('click', function(){
                var newColumn = $(this).attr('id');
                if(column !== newColumn){
                    column = newColumn;
                    order = 'ascending';
                }
                else{
                    if (order=='ascending'){
                        order = 'descending';
                    } else {
                        order = 'ascending'; 
                    }
                }
    
                alert (order);
            });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want each cell in my table (excluding headers and has to be a
I have three table views inside a view controller (going to show/hide table views
I have three table I need to query table 1,2 and 3 and select
I have three separate table variables in my Function, 1 of them is not
I have three mysql table from same database Db1. Three tables have following columns.
I have a simple three table reference. It looks plain enough. The associations there
Say I have three tables: Fruit (Table 1) ------ Apple Orange Pear Banana Produce
I have three tables of data: table: cars [10,000 rows] table: planes [2,000 rows]
I have three columns in mysql table: tax_id, company_name, store_name. I need that tax_id
I have three records in a table example: *Usernames* *email* *city* Nick nick@example.com London

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.