jQuery: Remove Specific Element from an Array
function removeArrayElement(list,value) { var position = $.inArray(value, list); if ( position == -1 ) list.splice(position, 1); }
Solution Architect, Software Engineer, Trainer, IT Consultant and Blogger
function removeArrayElement(list,value) { var position = $.inArray(value, list); if ( position == -1 ) list.splice(position, 1); }