Thursday, January 29, 2026

Debug on Firefox

 Disable timers on current web page

in console write the following command

let id = setTimeout(() => {}, 0); while (id--) { clearTimeout(id); clearInterval(id); } 

 

No comments:

Debug on Firefox

 Disable timers on current web page in console write the following command let id = setTimeout(() => {}, 0); while (id--) { clearTimeout(...