I have a few divs that I\'d like to put into an array.
When I try to use jQuery.inArray(), my div (as a jQuery object) isn\'t found. Why not?
var my
You can't use .inArray() for object comparison by content.
I like the approach outlined here. It's very clean.