We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOM Monster is suggesting to remove empty <td></td> nodes (tables sometimes can have empty cells). How is this possible?
<td></td>
The text was updated successfully, but these errors were encountered:
I would like to change code like this (of course, this needs testing):
if (nodes[i].childNodes.length==0 && !((/^(?:link|br|script|meta|img|a|input|hr|param|iframe|area|base|td)$/).test(tag)) && !((nodes[i].id||'') == '_firebugConsole')) { if(JR._console) console.warn('Empty node', nodes[i]); empty++; }
Sorry, something went wrong.
No branches or pull requests
DOM Monster is suggesting to remove empty
<td></td>
nodes (tables sometimes can have empty cells). How is this possible?The text was updated successfully, but these errors were encountered: