'Sortable DIV columns

I've been breaking my head over this one for a while..

I have a table with data which I'd like to make sortable using jQuery/Javascript. However, the table consists of CSS and is not and actual html table.

I've tried Tinysort & datatables.net, but they don't fit my specific usecase.

Example of the columns I try to sort:

<div class="row clan_header_row">
    <div class="col-md-1"></div>
    <div class="col-md-4"><strong>Name</strong></div>
    <div class="col-md-3"><strong>Networth</strong></div>
    <div class="col-md-2"><strong>Land</strong></div>
    <div class="col-md-2"></div>
</div>

See all @ https://jsfiddle.net/ehf7atpv/

Basically what I'm trying to achieve, is making the columns land, networth & name sortable.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source