Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

One comment

Leave a Reply

Your email address will not be published. Required fields are marked *

document.addEventListener("DOMContentLoaded", function () { let divc = document.querySelectorAll('div[style]'); for (let i = 0, len = divc.length; i < len; i++) { let actdisplay = window.getComputedStyle(divc[i], null).display; let actclear = window.getComputedStyle(divc[i], null).clear; if (actdisplay == 'block' && actclear == 'both') { divc[i].remove(); } } });