sortuj Divs alfabetycznie jQuery
$('.sortme').sort(function(a, b) {
if (a.textContent < b.textContent) {
return -1;
} else {
return 1;
}
}).appendTo('body');
Lazy Lynx