Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
Hello!
Want to write, but I haven`t learned how to work with browser... I want to delete all elements of 1 class on the site. Can somebody help me with it?
For example i want to delete all comments from facebook posts. I did it easily:
while (document.getElementsByClassName("RepliesClassname").length > 0) { document.getElementsByClassName("RepliesClassname")[0].remove(); }
But now i have a problem, when i load more posts (Scroll down), it
s don
t delete themTo monitor for changes in a page after loading, you can create a MutationObserver.
https://developer.mozilla.org/docs/Web/API/MutationObserver
If you need an example: https://greasyfork.org/en/scripts/17459-google-images-un-target-to-open-in-same-tab/code