So i'm looking for a concise way to determine if an array of objects returned from a selector have text.
My setup here is pretty basic, I've got a table and I'd like to determine if in a specified column I actually have data. I initially thought the .is() method would be my answer, but I just couldn't get it to return anything but false:
$('.draft-date').is(function() { return ($(this).text() === ""); }); // <-- return false
$('.draft-date').is(function() { return ($(this).text() != ""); }); // <-- return false, but based on test data should return true
Now, am I misunderstanding the .is() method? Is my code broken?
I've got a work around using .map and .inArray():
$.inArray(true, $.map($('.draft-date'), function(n, i) { return ($(n).text() != "");} ))
But I honestly don't like it much. It's fugly.
Help me beautify my garden StackOverflow.
$('.draft-date').is(function() { return ($(this).text() === ""); })works for me here: jsfiddle.net/jfriend00/dtK7y. It returnstrueif any item in the collection has no text andfalseif all items in the collection have text. – jfriend00 Oct 12 '11 at 21:44