Remove HTML classes and IDs

<h1 class="bigHeading">Names</h1>
				<table class="greyTable" style="width: 300px;" border="1">
				<tbody>
				<tr><th class="TableHeading" width="75">Name</th><th class="TableHeading" colspan="2">Telephone</th></tr>
				<tr>
				<td>John</td>
				<td><a class="tapToCall" href="tel:0123456785">0123 456 785</a></td>
				<td><img id="checked1234" src="images/check.gif" alt="checked" width="25" height="30" /></td>
				</tr>
				</tbody>
				</table>
				
<h1>Names</h1>
				<table style="width: 300px;" border="1">
				<tbody>
				<tr><th width="75">Name</th><th colspan="2">Telephone</th></tr>
				<tr>
				<td>John</td>
				<td><a href="tel:0123456785">0123 456 785</a></td>
				<td><img src="images/check.gif" alt="checked" width="25" height="30" /></td>
				</tr>
				</tbody>
				</table>
				

Removes all the classes and ID's from your messy HTML code. This is useful when you're copying content from an other website and you want to clear all the alien classes and ID's the source website is using. If you want to rewrite these attributes, you can leave this option unchecked and use the find and replace tool to specify your own id and class names.