Questions tagged [mouseover]

A mouseover is an event that occurs on an element when the user moves the cursor over that element

A mouseover refers to a GUI event that is raised when the user moves the cursor over a particular area of the GUI. It can also be referred to as "hovering" over the element. It is usually followed by the similar but opposite mouseout event, in which the user removes the cursor from over the element.

2468 questions
17
votes
7 answers

Mouseover/hover effect slow on IE8

I have noticed a weird performance thing in IE8 when using mouseover events on a table with many rows (100 in this example). I have tried a lot of different approaches but I can't seem to find any way to get it as fast as I like/need. If I switch…
bobmoff
  • 2,415
  • 3
  • 25
  • 32
16
votes
4 answers

Prevent CSS :hover style propagation

In the following example, when I mouse over the 'X' button, the list-item hover style gets enabled as well, I do not want this to happen. Is it possible to have a hover style on the button independent of the hover style on the list-group-item?…
zok
  • 6,065
  • 10
  • 43
  • 65
16
votes
5 answers

How to detect a keypress AND a mouseover at the same time

Okay so I can detect a mouseover using .on('mouseover') and I can detect keypresses using $(document).keypress(function(e) { console.log(e.which); } but how do I detect which image my mouse is hovering over when I press a certain…
TheDavil
  • 706
  • 2
  • 7
  • 22
14
votes
4 answers

How do you create "aura" effect from the mouse pointer?

If you open google chrome and open multiple tabs, you see the effect by hovering over a background tab. The pointer will have an "aura" effect which follows it around. To clarify, I'm NOT asking how to make the entire tab glow a lighter color, I'm…
CDelaney
  • 1,238
  • 4
  • 19
  • 36
14
votes
4 answers

Change ListViewItem background colour on mouse over

I need some help here. I can't understand why none of the solutions I found work for my case. Let's consider a Listview with these items: 1 I'm bold
Ángel Fas
  • 353
  • 1
  • 3
  • 15
14
votes
4 answers

d3 - trigger mouseover event

I have a map of the US states and counties in a SVG graphic rendered by D3. Each path have mouseover, mouseout and click events bound to it, as well as the FIPS county code set as the path ID. I have a jQuery Autocomplete input where the user can…
Jason
  • 11,263
  • 21
  • 87
  • 181
14
votes
2 answers

apply several mouseover events to neighboring (connected) nodes

I have a network diagram (force-directed graph), a scatterplot, and a table that are all interconnected (see jsFiddle). I have the interconnections working the way I want them for mouseover events. I would like to modify my code so that when I…
Jean V. Adams
  • 4,634
  • 2
  • 29
  • 46
13
votes
4 answers

Cocoa osx NSButton show text when mouse over

In my application for Mac I want to show some info text when the users moves the mouse pointer over a button. Something like this: How can I achieve this correctly? Thanks in advance.
user3065901
  • 4,678
  • 11
  • 30
  • 52
13
votes
2 answers

Remove the mouse over effect on a ListView in WPF

How can I get ride of the pale blue mouse over effect on my ListView? When I touch the screen a pale blue selector appears and stays in the middle of the screen as I scroll up and down (but the selected item which is highlighted in a darker blue…
Sun
  • 4,458
  • 14
  • 66
  • 108
13
votes
2 answers

Mouse position on mouseover event

Is it possible to get the exact mouse position in a mouseouver event of an image? If I use a function that updates the mouse position on a document mouse move event, I can have problems with delay and this kind of thing and wouldn't get the EXACT…
user2013107
  • 265
  • 1
  • 4
  • 12
12
votes
2 answers

Awesome CSS Effect

404 Page or 500 Page Anyone have any idea how to do this sort of thing? The animation that moves with your mouse? Thanks for the correction, @Alin. Just a link to a tutorial would be nice. EDIT: Just also learned it's the parallax effect. That…
tekknolagi
  • 10,663
  • 24
  • 75
  • 119
12
votes
3 answers

Hover, mouseover and mouse out

I'm learning and using jQuery and want to display a delete icon for some elements. I have an outer main div, which contains number of wrappers for elements. Inside the element wrapper, I want to display a delete icon when the user hovers over the…
KutePHP
  • 2,206
  • 6
  • 36
  • 54
12
votes
6 answers

Writing a paint program à la MS Paint - how to interpolate between mouse move events?

I want to write a paint program in the style of MS Paint. For painting things on screen when the user moves the mouse, I have to wait for mouse move events and draw on the screen whenever I receive one. Apparently, mose move events are not sent very…
Heinrich Apfelmus
  • 11,034
  • 1
  • 39
  • 67
12
votes
5 answers

JavaScript mouseover/mouseout issue with child element

I have this little problem and I am requesting for your help. I have a div element, inside which I have an img element, like this
ali
  • 10,927
  • 20
  • 89
  • 138
11
votes
1 answer

jqplot changes the color of graph on mouse hover

jqPlot changes the color of the fill when mouse hovers... I want to remove that effect.. How ?? Here are the options used: var options={ series: [{ neighborThreshold: -1, shadowAngle:0, …
Shrinath
  • 7,888
  • 13
  • 48
  • 85