JQuery $.unique() issue ie
- by vanzylv
Hi Guys
var arr = new Array();
arr[0] = 'Departmental News'
arr[1] = 'Departmental News'
arr[2] = 'Another Cat'
arr[3] = 'Another Cat'
arr[4] = 'Departmental News'
alert(arr)
alert($.unique(arr))
In IE I get duplicates.
In any other browser only the unique ones
Any Ideas?