Google: collapse leftover empty spacers
Zeroes the margins of empty containers left by hidden blocks so the results list has no gaps.
Code to copy
// Collapse empty container divs left behind by hidden blocks
function dropEmpties() {
document.querySelectorAll('#rso > div, #botstuff > div')
.forEach(function (el) {
const visible = el.offsetParent !== null && el.offsetHeight > 0;
if (!visible || el.textContent.trim() === '') {
el.style.margin = '0';
el.style.padding = '0';
}
});
}
dropEmpties();
const obs = new MutationObserver(dropEmpties);
obs.observe(document.documentElement, { childList: true, subtree: true });
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's JavaScript panel and save — it runs on every page visit.
Rate this example
No ratings yet — be the first.