Make an Education Possible by Making it Affordable for a Student
bottom of page
function removeElement() {
const element = document.querySelector(".css-112xj8j");
if (element) {
element.remove();
console.log("Removed element: .css-1xi4v5y");
}
}
// Run the function every 500ms (half a second) to catch dynamically loaded elements
const interval = setInterval(() => {
removeElement();
}, 500);
// Stop checking after 10 seconds
setTimeout(() => {
clearInterval(interval);
}, 10