How do I remove an item[i] from items once it reaches in:
$.each(items, function(i) { // how to remove this from items });
Something like
var indexToBeRemoved = 3; // just an illustration $.each(items, function(i) { if(i==indexToBeRemoved){ $(this).remove(); } });