var arr = ['one', 'two', 'three'] arr = $.grep(arr, function(value) { return value != 'two'; });
['one', 'three']