0

I have imported jQuery from the CDN and try to do this:

$('th').click(() => {
        this.css("background-color", "rgba(23, 162, 184, 0.3)");

        if (lastClickedID === this.id) {
                direction === "asc" ? direction = "desc" : direction = "asc"; 
                $('#text-center').load('/Index?handler=OrderTablePartial&col=' + this.id + '&dir=' + direction + '&pageNo=' + page);
        }
        else {
                lastClickedID = this.id;
                $('#text-center').load('/Index?handler=OrderTablePartial&col=' + this.id + '&dir=' + direction + '&pageNo=' + page);
        }
})

But when I hit the table header nothing happens

0 Answers0