79279212

Date: 2024-12-13 18:08:35
Score: 0.5
Natty:
Report link

had a bug in ff with a div no scrolling using window.scrollTo(0, 0);.

had to do something like


const div = document.getElementById('my_not_well_scrolling_div');
div.style.display = 'none';
setTimeout(() => {
  div.style.display = 'block';
}, 10);

it's kinda magic lol

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: quazardous