How to Remove Specific Value from Array?
var arr = [1, 2, 3, 4, 5];
var removeItem = 2;
arr = $.grep(arr, function(value) {
return value != removeItem; });
Tags: How to Remove Specific Value from Array
by Subbu · Published June 21, 2013
by Subbu · Published April 16, 2013
by Subbu · Published August 19, 2013
More