79380239

Date: 2025-01-23 08:00:35
Score: 1.5
Natty:
Report link

maybe try this js code ?

        document.onmousedown = function (event) {
            // Hide .da only if the clicked element is NOT a BUTTON AND NOT an element with class 'aa'
            if (event.target.tagName !== 'BUTTON' && event.target.className !== 'aa') {
                document.getElementsByClassName('da')[0].style.display = 'none';
            }
        };
Reasons:
  • Whitelisted phrase (-1): try this
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: cris