Hey there! Sorry, but for some reason my call to each() always fails, and "this[0].innerHTML is undefined" shows up in fire bug. The code isn't particularly complicated and it seems to follow all the examples I've seen so far.
Would anybody have an idea as to why this would fail?
$("#theirItems tbody tr").each(function(i){
var child = $(this);
if(child.children("td").size() < 6){
//Unimportant stuff
}
});
It fails on the first line, where it calls the each function.
Thanks in advance!