I'm using jQuery 1.3.1 and when I try to loop through a form and remove any div w/out an id i get an exception.
uncaught exception: Syntax error, unrecognized expression: [@id]
$('form:eq(1)').children().each(
function()
{
this2 = this;
if ($(this2).find('div').not('[@id]')) { $(this).remove(); }
}
);