Using jQuery inArray with array of JavaScript Objects

n is your list item, so something like this should do the job:

$.grep(issuesArray, function(n) { return n.ID != "2"; })

Leave a Comment