var arr = [1, 2, 3, 4, 5];

var removeItem = 2;  

arr = $.grep(arr, function(value) {

 return value != removeItem;

});