Tagged Questions

The mouseover tag is for issues relating to raising and handling mouseover events.

learn more… | top users | synonyms

38
votes
12answers
39k views

How do I check if the mouse is over an element in jQuery?

Is there a quick & easy way to do this in jQuery that I'm missing? I don't want to use the mouseover event because I'm already using it for something else. I just need to know if the mouse is ...
14
votes
6answers
7k views

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 ...
10
votes
2answers
304 views

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: ...
10
votes
5answers
9k views

iPad/iPhone hover problem causes the user to double click a link

I have some websites I built times ago, that use jquery mouse events...I just got an ipad and i noticed that all the mouse over events are translated in clicks...so for instance i have to do two ...
8
votes
4answers
5k views

Tricky delay on mouseover

This is what I have currently: $("#cart-summary").mouseenter(function () { $('.flycart').delay(500).slideDown('fast'); }); $(".flycart").mouseleave(function () { ...
7
votes
4answers
325 views

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 ...
6
votes
3answers
502 views

On mouse-over event in WPF?

I'm trying to implement a tool-tip system in a WPF MVVM application. The tool-tip is supposed to appear in a certain Label that is a part of the MainWindow (not hovering at the mouse pointer) and ...
6
votes
4answers
844 views

Accurately detect mouseover event for a div with rounded corners

I am trying to detect a mouseover event on a circle. I define the circle div like this: .circle { width: 80px; height: 80px; -moz-border-radius: 40px; -webkit-border-radius: 40px; ...
6
votes
5answers
12k views

jQuery: is mouse still over the element?

I would like to be able to detect if the mouse is still over the element in the following scenario: If mouseover then sleep for a few seconds. Once done sleeping check of the mouse is still over the ...
5
votes
3answers
334 views

How to show a “box” around text in HTML tag on mouse over?

I'm writing a BHO for Internet Explorer where I'm searching for specific words in a web page and encapsulates words found in a HTML-tag, for styling purposes. I have code to change the style-property ...
5
votes
4answers
2k views

html zoom on mouse over

I want to have a photo in a site, and when I mouse over, I want a little magnifier zoom effect. Can I do this in html with canvas or something? javascript maybe? thank you
5
votes
1answer
436 views

Jquery effect problem : How to detect if mouseover is triggered by scroll?

I have another problem, and because the reply is to fast here i come back again !! I would like to use "key navigation" and for that, i use the keypress event with down/up key ) When my mouse is ...
5
votes
2answers
812 views

jQuery trigger mouseover function when page loads with the mouse over the element

I have an ASP.NET document, with an Image element within it. I created a mouseover function on this image element and it's working fine. The question is: If the mouse is ALREADY over the element when ...
5
votes
3answers
8k views

JavaScript : Simulate Mouse Over in code

I'm attempting to write a vimperator plugin to allow use of hints mode to simulate mouse over on drop down menus. I have the hints mode working and can correctly choose elements that have mouseover ...
4
votes
3answers
70 views

jQuery hover mouseover/mouseout timing

I have the following live example at freakyleaf.co.uk/hoverfade/ whereby upon hovering over a tile, the tile background image fades form 1 to 0.25 opacity over 600ms (.tile_img), then text fades from ...
4
votes
2answers
556 views

jQuery disable scroll when mouse over an absolute div

I'm trying to disable the window mouse scroll functionality when the mouse is hovering over the div - so that only div scrolling is enabled - and when mouse moves away from the div - scrolling to the ...
4
votes
2answers
83 views

jQuery sending mouseevents down the z-axis

Is it possible to send a mousevent down a z-axis? For example, an element has been absolutely positioned on the site above another element. I would like the element below to get the mouseover event ...
4
votes
2answers
996 views

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 ...
4
votes
3answers
839 views

Mouseover option of select for IE

I'm using IE7. I want to have show a description in the page for each option in the select box when the mouse is over the option. So as starting I wrote the code which shows the option value in the ...
4
votes
4answers
10k views

google maps v3 marker mouseover tooltip

I want to put a tooltip made myself with divs when the mouse is over a marker, but I don't know how to get the screen position to put the div on the correct position, here is my code: ...
4
votes
2answers
3k views

Is faking a WPF mouseover possible?

I have a data template with a textbox and a button with some styles on it. I would like to have the button show the mouse over state when focus is on the textbox beside it. Is this possible? I ...
3
votes
4answers
50 views

In jQuery what's the best way to add a class on mouseover and remove it on mouseout?

Is there a jQuery shortcut for this? $(element).on("mouseover", function() { $(this).addClass("hover"); }).on("mouseout", function() { $(this).removeClass("hover"); }); I see in the jQuery ...
3
votes
1answer
41 views

jquery mouseenter mouseleave with datatables, doesnt work in chrome or IE

I'm using the datatables plugin to display a table. In the configuration parameters I've set bJQueryUI : true so the table apply the style of the current jQuery UI style that I'm working with. In the ...
3
votes
4answers
377 views

jQuery Image Swap for mouse-over and mouse-down

What I want to achieve: I want an image swap to occur first when the cursor is over the image (mouse over) and second when the image is clicked (mouse down click). Example: I have an image of a ...
3
votes
3answers
94 views

jQuery mouseover not working for li element

I'm trying to make a menu based on an ul element that will show the link description underneath the link. So far, I have the following code (simplified a little) echo ' <script> ...
3
votes
2answers
134 views

How can I detect the element(s) at an arbitrary mouse position (x,y)? [closed]

Possible Duplicate: Get element at specified position - JavaScript How can I detect the elements at an arbitrary mouse position (x,y)? I am using mouseenter/mouseleave to highlight hovered ...
3
votes
4answers
297 views

jQuery mouseover mouseout opacity

function hoverOpacity() { $('#fruit').mouseover(function() { $(this).animate({opacity: 0.5}, 1500); }); $('#fruit').mouseout(function() { $(this).animate({opacity: ...
3
votes
1answer
258 views

Making an image click-through but still respond to mouseover?

The title pretty much says it all. Is there a way to make an image in XAML code visible, not clickable (I'm trying to make the element behind it receive the click) and responsive to mouseover events ...
3
votes
4answers
634 views

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 ...
3
votes
4answers
2k views

how can I display tooltip or item information on mouse over?

I am displaying 5 userImage on one screen.I want to display userID and email on mouseover on those userImage.I used alt property of image control but that not working in mozila,chrome and some ...
3
votes
1answer
424 views

Any HTML tags inside of tooltip cause basic tooltip to close on hover

I'm new to jQuery, in fact any kind of AJAX / JavsScript (although not new to PHP, xHTML and CSS). Anyway I'm trying to achieve a "tooltip-like" effect, where I can hover over a div...the new div ...
3
votes
5answers
1k views

Hide / show content via CSS:hover (or JS if need be)

I have the following html: <li> <span class="one">Stuff here</span> <span class="two">More stuff</span> </li> .one { display: block; } .two { display: none; } ...
3
votes
3answers
561 views

What is HTML code that causes captions/comments pop up when mouse is rolled over a hyperlink?

What is that peice of the HTML code that allows me to provide comments to links before the user is actually clicking on them? Do you know what I mean? I mean, on my web page I have some hyperlinks, ...
3
votes
4answers
320 views

How to add a mouse-over summary

I'm almost certain this is going to be a very simple answer but I can't seem to find it anywhere. We all know when you hover your mouse over something (like a string) a little summary pops up (if its ...
3
votes
3answers
1k views

Looking for a mouseover sound script

I'm looking for a a mouseover sound script (for button). I plan to use wav sound but it can be another sound format. Those I have found on the net are not compatible with new browser version. I ...
3
votes
4answers
983 views

jquery tools - tabs mouseover - adding a link

I love this tool to show text when moving the mouse over the pix: http://flowplayer.org/tools/demos/tabs/mouseover.htm Now I'm trying to open a link, when one of the pix is clicked by the mouse. I ...
3
votes
4answers
6k views

jquery continuous animation on mouseover

I am trying to have an animation run only when the mouse is over an object. I can get one iteration of the animation and then have it set back to normal on mouse out. But I'd like the animation to ...
3
votes
2answers
405 views

mouseover banner controlled by text

I'm trying to create an effect where rolling the mouse over some text will cause an image in another part of the page to change to another image until you the mouse moves away from the text. Does ...
3
votes
3answers
1k views

jQuery activate a mouseover function only if the mouse holds on the element

I would like to activate a .mouseover function only if the mouse lays down on the "trigger" element for a predetermined duration (e.g. 500 milliseconds). E.g. $('.featured').mouseover(function () { ...
3
votes
2answers
2k views

WPF Play Movie on Mouse Over

Is there a way using WPF to get a video element to start playing when a user puts there mouse pointer over the element? I am wanting to make an interactive digital resource and want a clip of the ...
2
votes
1answer
63 views

Subclassing QLabel to show native 'Mouse Hover Button indicator'

I have a QLabel with a 'StyledPanel, raised' frame. It is clickable, by subclassing QLabel; class InteractiveLabel(QtGui.QLabel): def __init__(self, parent): QtGui.QLabel.__init__(self, ...
2
votes
2answers
47 views

Forwarding mouseMoved() events to JTree nodes?

If I place a JCheckBox outside of a JTree it plays an animation when I hover over it. When I place the same JCheckbox inside a JTree node, it no longer receives any mouseMoved() events and no ...
2
votes
3answers
30 views

Pause jQuery effect during execution

My website has some icons that glows on mouse over but I want it to glow randomly when no one is hovering. Right now I have the correct piece of codes that will make it randomly glow and glow on ...
2
votes
2answers
57 views

Nested quotations in HTML

I'm playing around with some bbcode for my forum, and I stumbled upon a problem concerning multiple nested quotations. I'm trying to implement an image tooltip on mouseover. <a ...
2
votes
1answer
149 views

Need to animate an image to move away from cursor postion on each mouseover?

I'm trying to animate an image of a box by changing it's position on mouseover. I can get it to move once but I need to set it up so that it moves everytime someone mouses over the image. I want to ...
2
votes
2answers
168 views

Pause jquery animation on mouseover

I am using a jquery script to fade in and out a bunch of <p>....</p> tags which works fine but I need the animation to pause on mouseover and resume on mouse out! Is there any method I can ...
2
votes
1answer
375 views

WPF show popup on DataGrid cell MouseOver

I would like the following functionality: I have a datagrid, and when I go with my mouse pointer over a cell, I would my program to show a popup screen with information. When my mouse leaves the cell, ...
2
votes
2answers
88 views

Fade image position

I have a list like this: <ul> <li><a href="#"><img src="/userfiles/test.png" alt="" /></a></li> <li><a href="#"><img ...
2
votes
3answers
564 views

Image Greyscale with CSS & re-color on mouse-over?

I am looking to take an icon that is colored (and will be a link) and turn it greyscale until the user places their mouse over the icon (where it would then color the image). Is this possible to do, ...
2
votes
2answers
55 views

Emulating Webkit's Element Inspector

I'm trying to let a user select an element on a page using their mouse, like you see in chrome's dev tools. (yes, I know it's open source and already js) The problem arises when trying to detect when ...

1 2 3 4 5 12