11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
|
|
window.addEventListener('load', () => {
|
|
pustyartykulremove();
|
|
})
|
|
function pustyartykulremove(){
|
|
document.querySelectorAll('.page-header').forEach(items => {
|
|
if(items.innerHTML.includes('Pusty')){
|
|
items.remove();
|
|
}
|
|
})
|
|
} |