jquery Programming Glossary: plum
JS sort works in Firefox but not IE - can't work out why http://stackoverflow.com/questions/2956432/js-sort-works-in-firefox-but-not-ie-cant-work-out-why . cherry first then the rest in alphabetical order originalData 'cherry' 'apple' 'banana' 'clementine' 'nectarine' 'plum' data before sorting note how clementine is second item we wan to to to be after apple and banana csub value cherry data.. data apple result apple value banana data banana result banana value nectarine data nectarine result nectarine value plum data plum result plum after sorting csub has been rearranged but still isn't right clementine is before banana. in FF it's.. result apple value banana data banana result banana value nectarine data nectarine result nectarine value plum data plum result plum after sorting csub has been rearranged but still isn't right clementine is before banana. in FF it's in the..
|