I'm about to pull my hair out, because of all the extra time spend on nursing IE -_-
Well, I have an unordered list of divs, which I'm trying to sort. This works perfectly in both Chrome and Firefox, but not IE.
The JS is fairly simple:
$('#VariantContainer > .ProductVariant').sort(function(a,b){
return a.id > b.id
}).appendTo('#VariantContainer')
Check out this fiddle in IE: http://jsfiddle.net/PAJ3w/
Anyone got a clue why?
Thanks :)
BR Martin