Tagged Questions
For issues relating to setting up, subscribing to, or handling mouseout events.
8
votes
5answers
322 views
What is the difference between jQuery's mouseout() and mouseleave()?
What is the difference between jQuery's mouseout() and mouseleave()?
7
votes
3answers
1k views
Move active element loses mouseout event in internet explorer
In a library I am using I have the task of moving an element to the front of the dom when it is hovered over. (I make it bigger so I need to see it, then shrink it back when mouse out).
The library I ...
4
votes
3answers
73 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
3answers
2k views
Java Swing: change background color on mouse over
I've implemented a simple mouse listener where the background color changes whenever the mouse enters the component (a JPanel), and it reverts back whenever the mouse leaves. This has some problems:
...
3
votes
4answers
52 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
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
300 views
jQuery mouseover mouseout opacity
function hoverOpacity() {
$('#fruit').mouseover(function() {
$(this).animate({opacity: 0.5}, 1500);
});
$('#fruit').mouseout(function() {
$(this).animate({opacity: ...
3
votes
2answers
390 views
jquery: mouseout event firing even after I used a click event to hide the div
jQuery("#na").mouseover(function()
{
jQuery("#na").animate({width:"325px", height:"203px", left:"-40px", top:"-25px"}, 200)
});
jQuery("#na").mouseout(function()
{
jQuery("#na").stop()
...
2
votes
1answer
113 views
jQuery Fading effect occuring multiple times
I am trying to write a simple jQuery script to apply fading effect on footer. On mouseover event, it fades in with opacity = 1, and on mouse out event it fades out to opacity 0.01. I have applied this ...
2
votes
1answer
374 views
MouseOver remove class MouseOut restore class
so i am trying to find a little bit of script to remove the class on the active menu item when i hover over other menu items. But restore it when i move away from the nav. The tricky part is making ...
2
votes
2answers
1k views
jQuery - mouseover/mouseout with multiple divs
I have a hidden div nested inside a larger div, and set it up so when you mouseover the larger div, the hidden div slides down. On mouseout, the div slides back. The problem is, when the mouse goes ...
2
votes
2answers
934 views
Adding MouseOut delay to this piece of jQuery (menu nav)
I'm a complete absolute jQuery noob. I've been following a tutorial to add a CSS/jQuery navigation menu to my site, and I got it working.. The only thing I would like to see added is a small delay on ...
2
votes
3answers
209 views
setTimeout and mouseout problem
I have this code:
function beforemouseout() {
if ($(this).val() == '') {
$(this).val($(this).attr('title'));
}
else {
}
setTimeout('beforemouseout()',3000);
}
...
2
votes
2answers
620 views
jquery mouseout problem
<div id="parent">
<div id="child">cx</div>
</div>
when i use jquery
$('#parent').mouseout(function(){
//something here
});
i wonder why when my mouse enter the child div ...
2
votes
6answers
655 views
Children inside <a href> trigger mouseout. How to prevent that?
I have this:
<a href="javascript:void(0);">
<div>
<span>some content</span>
<span>some content</span>
</div>
</a>
The problem is ...
2
votes
6answers
2k views
Javascript event when mouse leaves browser window
I'd like some Javascript code to run when the mouse leaves the browser window. I only need to support Safari (WebKit.)
I tried putting a mouseout handler on window. That handler is reliably called ...
2
votes
1answer
782 views
How do I add MouseEvents to an AbsolutePanel?
How do I add MouseEvents, specifically MouseOutHandlers to an AbsolutePanel without creating a Composite widget? Or is this possible? From what I can tell it involves adding a DomHandler, and a ...
2
votes
1answer
782 views
problem with mouse event for absolute position div
I have list of images on mouseover on those have to show some information. Problem is mouse events are not trigger for the info div.
#team_div{
display:block;
position:relative;
}
#pop_div{
...
2
votes
2answers
375 views
preventing mouseout event for child node
I have list of images, on over on image i want to show some information on that image. And mouseout of the info div, same should disappear. Problem is when mouse moves on child tag of info div it ...
2
votes
3answers
6k views
How to stop Mouse Out event on Flex Canvas firing for child elements
I am using a Canvas itemRenderer for a container I use to display images. See pseudo code below.
image = new Image();
image.source = data.@thumb;
this.addChild(image);
...
1
vote
3answers
43 views
Simple jquery caption not working
I am trying to make a simple little caption box that fades in to 50% of the total width of the element when you mouseover the element, and stays there until you mouseout of the element.
It's working ...
1
vote
1answer
145 views
Raphael JS - Start/Continue animating during mouseover. Pause animation on mouseout
Using Raphael JS, is there a way to make a circle move to the right (or any direction) during mouseover, and then pause/stop the movement when the cursor is no longer on the circle.
I've tried few ...
1
vote
2answers
82 views
Do while mouseover , do other thing while mouseout
I saw this code in another question , I thought I might make it work for an image too, but since I am a newbie in jquery, I didn't do much.
Here is the code:
$('someObject').bind('mouseover', ...
1
vote
1answer
25 views
Why this mouseout will be called when i move out of li instead of ul?
i want to call mouseout of ul tag, but it looks it will call mouseout as well when i move between two li tags, what's wrong? how can i make it work when i move mouse out of the ul? thanks a lot!
...
1
vote
2answers
97 views
jQuery - ToolTip - mouseover & mouseout seem to be firing in loop without mouse movement - hoverintent hasn't helped
What I'm trying to do:
I have a div that I generate and hide on page load. When specific elements on the page are moused over, I want to display the div as a tool tip above the element. I had added a ...
1
vote
1answer
76 views
sub navigation div keeps hiding
I have a nasty navigation problem but can't seem to get it to work. When hovering over the <li> items in the mainnav div, according subnavigation shows.
But it won't stay in active class state ...
1
vote
3answers
193 views
jquery mouse hover effect bug, mouseover event always triggers a few times on mouseout
I have a simple gallery grid with a nested span that shows the title, which I want to slide up on mouse over, and hide on mouse out.
Everything works fine, except whenever the mouse moves down to ...
1
vote
1answer
71 views
How can I create an exception for a jquery mouseout event only if another mouseover event hasn't been triggered?
Basically my client wants hidden navigation to appear when mouseover an image. I've solved the problem of the navigation not hiding when you mouseover the navigation and then hiding when you leave ...
1
vote
4answers
117 views
jQuery .fadeOut probelms in FireFox 6.0
So far, I have the fadeIn working, but the fadeOut has not been quite right. Right now, as soon as the mouse leaves the hover area, it doesn't look like any fadeOut is happening at all. I would like ...
1
vote
1answer
96 views
JS mouseover/mouseout blinking but not staying
Here's a little code I have problem with:
$(".setEtiquette").mouseover(function(){
var rightFrame = $(this).attr("name");
$('#'+rightFrame).fadeIn();
}).mouseout(function(){
var ...
1
vote
5answers
107 views
JQuery mouseover mouseout function dancing
The following function causes a box to open over a gallery on mouseover. The problem is that it won't stop trying to open and close. This is something to do with the mouseout function being triggered ...
1
vote
3answers
151 views
Mouseout on specified divs and keep original div open
I'm trying to do this in plain english: I have an open div from a mouseover event, when I take the mouse out of the div it closes on mouse out, perfect. What I need is that when I mouseout, if I ...
1
vote
2answers
93 views
how to correctly make a onmouseout event for a UL?
Check this simple code:
<ul onmouseout='alert(1)'>
<li>aaaaaaaaaaaaaaaaaaaaaaaa</li>
<li>bbbbbbbbbbbbbbbbbbbbbbbbb</li>
...
1
vote
1answer
528 views
Raphael JS : mouseover/mouseout - problem with text-labels
I use Raphael JS to create an SVG-map with area's and textlabels. I want the area to highlight when you move the mouse over it.
I have this working now, but when I move the mouse over the label (in ...
1
vote
2answers
72 views
Changing Opacity with jQuery
I have 9 items on a grid, I want all items to have 0.5 opacity on every item and only when hovered over should the div/item and everything inside have 1.0 opacicty.
Here is the JS
...
1
vote
2answers
143 views
jquery mouseover mouseout
$('.rollover').mouseover(function(e){
e.stopPropagation();
thisName = $(this).attr('title');
$('li#'+thisName).show(50, 'swing');
});
...
1
vote
4answers
109 views
Help with attr, mouseenter, and mouseout not functioning correctly
I can't get the attr function to change the class and keep it until the next click. It also won't use the new mouseenter and mouseout functions. Any ideas what I am doing wrong?
HTML
<a href="" ...
1
vote
2answers
199 views
How can I do a “mouse out” effect in Java?
I'm trying to mouse over a JButton (javax.swing.JButton) and set the border color, Now I can get this to work I with a mouse move event on the button, I just need to mouse out and I can't seem to find ...
1
vote
2answers
403 views
jquery: appending a div causes mouseover/mouseout to loop
I have a ul that I'm using for a nav menu. When a user mouses over the child li, I append to the li a div with the class of "nav-about" (or nav-whatever the class is for that li), and slideDown the ...
1
vote
1answer
231 views
fadeout in jQuery
I am trying to add a Jquery function for updating a div on hover of a link inside a span
my html structure is
<ul><li>
<div class="timeline">
...
1
vote
3answers
276 views
Lock event on mouse exit java
I wrote an application where you can drag left and right some timeline.
When i do dragging i know that this is a mouseDragged event. Since i move mouse cursor outside component it stops dragging, but ...
1
vote
1answer
336 views
remove class on mouseout jquery
I'm using a jquery slide menu that works great!
I need to add a remove function on sub class when mouseout
code below
<script type="text/javascript">
$(function() {
/* ...
1
vote
1answer
199 views
Mouseovers on image maps in IE8
I'm having a problem with IE (who isn't) executing my javascript. Are there any known issues with attaching mouseovers to image maps in IE8? I'm not seeing any similar posts.
For instance, here is ...
1
vote
1answer
254 views
jquery: mouseout applies to nested elements
ul with links nested in a div layer. mouse pointer goes over .title, ul is shown.
the problem: mouseout() applies to nested elements
mouseout() is for the div
<div>
<a ...
1
vote
1answer
135 views
jQuery : How to create a jQuery hover function?
I want to create two functions what fades in and out an element.
This is what I have done so far, but the problem with this is that if you move the mouse while you are in the hovered element it ...
1
vote
5answers
4k views
Change background color on mouseover and remove it after mouseout
I have table which class is forum. My jquery code:
<script type="text/javascript">
$(document).ready(function() {
$('.forum').bind("mouseover", function(){
var color = ...
1
vote
2answers
222 views
Adding mouseOut time
How do I modify this script so that when I mouseout of the submenu, it still remains open for x seconds?
Currently it slidesup (hides) as soon as I mouseout. I need hoverintent like functionality ...
1
vote
2answers
2k views
jQuery animate mouseover/mouseout keep drop menu visible
I'm trying to make a basic drop down menu with animate and am running into the issue where I can't seem to figure out how to keep the dropdown part open until the mouse leaves. Is there an easy way to ...
1
vote
3answers
2k views
jQuery accordion navigation with mouseover/mouseout
I'm trying to create an accordion navigation menu with the following properties:
Hover over a parent LI, and its sub-menu slides down. If you mouse down to hover over the sub-menu, it stays open as ...
1
vote
2answers
812 views
Difference in clientX and clientY when going out of the browser on ie/ff
I just ran into a little problem with clientX and clientY.
I put a little event to detect if the mouse goes out of the window and to know where it exits. And there come the trouble, it works fine ...