What is the difference between this:
$.each($(\'#myTable input[name=\"deleteItem[]\"]:checked\').do_something());
and this:
You want to really use $.each with an array that isn't elements or something. ie:
$.each
var x = ["test", "test2"];
You'd use $.each(x... to traverse that instead of x.each :)
$.each(x...
x.each
.each is for elements only :)
.each