I have a simple script:
$('.expand').each(function(i){ 
var _Expand = $(this).parent();
    ExpGroupBy(_Expand);
});
Trying to pass the <tr> of all <td> with the class 'expand'
However firebug keeps popping up the Error:
'TypeError: formObj.getElementsByTagName is not a function'
Any ideas?
Thanks ^^