Удаление атрибутов в таблице

by satantx

HTML

<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
	<p style="text-align: center;"><span style="color: #3d4969; font-family: Lora, serif; font-size: 20px; text-align: center;">На готовую продукцию за 1 гр. Золото 585 пробы</span></p>
	<p style="text-align: center;">&nbsp;</p>
	<table class="price-table" style="outline: none; margin: 0px; padding: 0px; box-sizing: inherit; border-collapse: collapse; border-spacing: 0px; width: 744px; color: #3d4969; font-family: Montserrat, sans-serif; font-size: 16px;">
		<tbody style="outline: none; margin: 0px; padding: 0px; box-sizing: inherit; border: 1px solid #e8eaef; list-style: none; counter-reset: tr 0;">
			<tr style="outline: none; margin: 0px; padding: 0px; box-sizing: inherit;">
				<td style="outline: none; margin: 0px; padding: 7px 20px; box-sizing: inherit; font-size: 12px; line-height: 15px; text-align: left; width: 0px;">01&nbsp;</td>
				<td style="outline: none; margin: 0px; padding: 7px 20px; box-sizing: inherit; font-size: 12px; line-height: 15px; text-align: left; width: 1160.91px;">Ювелирные изделия без вставок</td>
				<td style="outline: none; margin: 0px; padding: 7px 20px; box-sizing: inherit; font-size: 12px; line-height: 15px; white-space: nowrap; border-left: 1px solid #e8eaef; text-align: center; width: 41px;">2245</td>
			</tr>
			<tr style="outline: none; margin: 0px; padding: 0px; box-sizing: inherit;">
				<td style="outline: none; margin: 0px; padding: 7px 20px; box-sizing: inherit; font-size: 12px; line-height: 15px; background-color: #f9faff; width: 0px;">02&nbsp;</td>
				<td style="outline: none; margin: 0px; padding: 7px 20px; box-sizing: inherit; font-size: 12px; line-height: 15px; background-color: #f9faff; width: 1160.91px;">Ювелирные изделия без вставок с алмазной огранкой</td>
				<td style="outline: none; margin: 0px; padding: 7px 20px; box-sizing: inherit; font-size: 12px; line-height: 15px; white-space: nowrap; border-left: 1px solid #e8eaef; text-align: center;...

JavaScript

$('table').each(function(){
var el = $(this).removeAttr('style width valign');
  $('td, tr, p, span, tbody').removeAttr('style width valign');
});