Most voted "mouse" questions
The mouse is an indicator device (in English, 'Pointing device') that serves to move a cursor on the screen, allowing to select, move and manipulate objects thanks to buttons. It is called click, the action of pressing (click) a button to effect an action.
Learn more…7 questions
Sort by count of
-
5
votes2
answers70
viewsHow to check the absence of a pointing device on the page on desktops?
In a project that aims to work only on desktop devices (desktop PC or notebook) it is mandatory to use a mouse (or pointing device, which can be a touchpad). If the user accesses from a mobile…
-
3
votes1
answer188
viewsHow to capture click event with mouse scroll?
My doubt is 'simple', but I can find no 'definitive' answer anywhere: You can specifically capture the mouse scroll click with JS? There is the function .click(), that I use a lot, but there is how…
-
1
votes1
answer138
viewsHow to reverse mouse click events?
Hit me a recent doubt, where the click of left button mouse could in a specific case become the right, and vice versa. Code var menulist = document.oncontextmenu; var menu = function(ev) { if…
-
0
votes1
answer660
viewsjavascript, mouse position in an element
To know the mouse position in an element use elm.onmouseover(mouse), however it is not possible to use this if it is already on top of this element, and elm.onmousemove(mouse), would have to…
-
0
votes1
answer68
viewsShow a div when closing the tab
Guys, to be very direct, I will use as an example this site: https://www.gospelprime.com.br/ Whenever you move the mouse towards the close tab button (or simply click on it - whoever you want, you…
-
0
votes1
answer182
viewsMouse problems Hover in css
all good? I have the following problem with mouse Hover, I started to see some html and css lessons and I am with a personal project, I made a simple code just to study mouse Hover but it doesn’t…
-
-1
votes1
answer16
viewsLock rotation when clicking
I’m making a Puzzle but I’ve caught it in one part. It seems simple, but I can’t find a solution. Well, I’m using the mouse to click on an object so that it will rotate to a certain angle, but I…