Skip to content
Advertisement

Tag: click

Javascript Click on Element by Class

So I am writing a script that can be run on a page but I want to click on this element, unfortunately, it does not have an id to get and I am trying to use the .click() function on it, but it doesn’t work, here’s what I have, anyone know how to fix it? This is the only element

Close/hide an element when clicking outside of it (but not inside)

I have a <div> that exists on a page and I need to make it so that when the user clicks outside of that element it will become hidden, but if the user clicks somewhere within the element, then it should stay. I tried using e.stopPropagation(); and e.preventDefault(); adding it to the click event of that certain DIV but that

Advertisement