quote:
Originally posted by Spunky
js code:
// IGNORE -> html = html.replace(/\<table\>.+?\<\/table\>/gi, "");
html = html.replace(/\<table.+?table\>/gi, "");
Should do it.
EDIT:
Changed it to allow for attributes in the table tag such as styles, class, id etc.
Doesn't appear to be working
EDIT: I didn't see your edit before i said it didn't work. Let me try your new one.