var result = $('div').sort(function (a, b) {
var contentA =parseInt( $(a).data('sort'));
var contentB =parseInt( $(b).data('sort'));
return (contentA < contentB) ? -1 : (contentA > contentB) ? 1 : 0;
});
$('#mylist').html(result);
Code Example |
---|
Cpp :: substr in cpp |
Cpp :: odd numbers 1 to 100 |
Cpp :: 2d vector in cpp |
Cpp :: c++ string find example |
Cpp :: how to use toString method in C++ |
Cpp :: c detect os |
Cpp :: power of a number |
Cpp :: print pattern and space in cpp |
Cpp :: how to change colour image to grey in opencv c++ |
Cpp :: sort c++ |
Cpp :: life the universe and everything solution c++ |
Cpp :: matrix dynamic memory c++ |
Cpp :: C++ continue with for loop |
Cpp :: c++ multiple inheritance |
Cpp :: SUMOFPROD2 solution |
Cpp :: vector iterating |
Cpp :: string format decimal places c++ |
Cpp :: c++ print text |
Cpp :: string number to integer number C++ |
Cpp :: c++ for each loop |
Cpp :: substring in c++ |
Cpp :: how to empty a std vector |
Cpp :: hello world cc++ |
Cpp :: makefile for single cpp file |
Cpp :: function c++ example |
Cpp :: ImGui button wit picture |
Cpp :: log base e synthax c++ |
Cpp :: greatest and smallest in 3 numbers cpp |
Cpp :: #define in cpp |
Cpp :: nested conditional operator |