2017-01-20 5 views

ответ

0

Попробуйте взломать с помощью CSS

.inventory_related thead { 
 
    display: none; 
 
}
<table> 
 
    <thead> 
 
    <th>header 1</th> 
 
    <th>header 2</th> 
 
    </thead> 
 
    <tbody> 
 
    <td>row value 1</td> 
 
    <td>row value 2</td> 
 
    </tbody> 
 
</table> 
 
<table class='inventory_related'> 
 
    <thead> 
 
    <th>header</th> 
 
    <th>header 2</th> 
 
    </thead> 
 
    <tbody> 
 
    <td>row value 3</td> 
 
    <td>row value 4</td> 
 
    </tbody> 
 
</table>