I have a series of divs which I would like to sort based on price, rating or alpha. The alpha is not an issue but to achieve the numerical sorting I am trying to use a data attribute.
Sample code below:
$(".btnSortP").click(function() {
console.log("Clicked");
var divList = $(".listing");
divList.sort(function(a, b){
return $(a).data("price") - $(b).data("price")
});
$("#container").html(divList);
I can't get the function to return the parent divs in the correct order. I've created a fiddle to try to demonstrate the problem.
base on your html best way is:
jsfiddle