mouseover

jquery mouseover question

I have this code: $("div[id^='intCell']").mouseover(function() { $(this).css({ "border:","1px solid #ff097c"}); }).mouseout(function() { $(this).css({"border:","1px solid #000"}); }) But I can't get it to work! In the html there is a list of divs which are generated by php to have ids of intCell_1, intCell_2 etc. Any ideas? ...

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 events attached. The problem is my function to simulate the mouse over is not working. This is what I currently have: function SimulateMo...

Changing the border on an image map

How do I change the border of an image map(on mouse over) that i have placed over a part of the image ...

(WPF) How do you bind to IsMouseOver on a usercontrol

Edit: The original premise of the question was incorrect so revised the question: Basically I want a button to be visible only when the mouse is over the containing user control. Here is the simplified versin of what I have: <UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas....

mini-screen popups on mouse over

I can't figure out how to phrase this question to be honest. :/ But I'm trying to get the following effect: http://zack.scudstorm.com/example.png I was wondering if anyone here could help me try to figure out how to accomplish this effect as seen in the image? :/ The effect, as seen in the image, is that when I hover over an image, o...

Set Image Opacity Problem

Hello, I have a little design problem. On this page I have a couple of mouseover images. As you can see (only in IE) the images are circled with black when setting the opacity. I do not have this problem in firefox. The reason I use opacity, is because when I use hide/show the image, the table where it resides in gets shaky. Can an...

Help with Mootools code

So I am using the mousenter demo from mootools. I put it on my site trying to affect the links so when someone hovers over them the link fades into another color. The problem I am having is that the mootools code is only set up to handle one ID! Since I am using it for a nav, I have multiple IDs that I want to change. How can I affect a...

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 over an element at a given moment. I'd like to do something like this, if only there was an "IsMouseOver" function: function hideTip(oi) { ...

Getting the face of a cube.

I want to calculate which face on a cube has been clicked. I've got the mouse to 3D down, and I can draw things, in 3D, at the mouse's position. All I need to do now is calculate WHAT face of a cube is being touched. EG. I have a function, when I pass the size, position and mouse position to it, it returns the face. Top, bottom, left, ...

Content of h1 tag is invisible until moused over in IE 6

The bizarre symptom I'm seeing on this page (only when viewing with IE 6) is that the text of the <h1> tag is invisible when the page is loaded or resized, but appears when I mouse over the region where it appears in the upper-left corner. I haven't seen this with any other browser, and the only CSS attributes I'm modifying for any h1 ta...

OnMouseOver works but the small thumbnail remains as red X only - how to show the thumb?

Hi, I'm using the following so that site visitors can click on a thumbnail (in this case its called tn_guinness-label.jpg) and when they do click, a larger image appears (in this case called guinness-label.jpg). So.... I tried it and all I could see was a tiny box with a red X inside, and when I hovered my mouse over the red X, it...

How to add to a mouseover javascript menu?

I currently started working on my school's website and have already encountered a problem. There has been a request to add a link to an existing menu that has been around for a couple of years. The menu is javascript and I really don't have any experience with it. I just know HTML. I think, but am not sure, that it's just mouseover and i...

Change background of image maps on mouse hover

Hi, Iam new to CSS and Javascript. In my website I have an image as the navigation bar and have created hotspots to link them to different pages. The problem is since the text is a part of the image, I cannot change the style of the text on hover. Whereas I want the text/the hotspot to stand out on mouseover, so I learn the background c...

changing color of rounded corners button with CSS

thanks a bunch in advance! i was able to make a rounded corner button using CSS. i like to be able to mouseover the button, and the entire thing changes its color, not just the inner most div. plz help! my assumption is that iam supposed to have some kinda javascript with onmouseover="", correct? here's the page: http://biozenconsulti...

drag & drop and mouse design patterns?

Are there any well-studied design patterns related to drag & drop and mouse gestures? Consider a canvas containing objects in a parent-child hierarchy with a certain layout. Some objects can be dragged and dropped onto other objects using the mouse. In addition, objects can be resized and moved with the mouse. Different hot-spots on obj...

Best Practices Question: Modern Menu with Sub DIVs and Alternate Page States

Greetings! I am interested to your feedback regarding best practices for handling a website menu system using modern methods (jQuery?). The old way (in place currently): <div id="menu"> <ul> <li class="navHotel"><a href="#" onmouseover="MM_showHideLayers('hotel','','show','tour','','hide','location','','hide','attractions','','h...

change image on mouseover

I've got a simple html/css page, where I show a picture. Now when the user moves the mouse on the picture, I'd like to swap out the picture to some other image. Upon leaving the image area the old picture should be shown again. How can I achieve this? A version which works without javascript would be best. Thanks in advance! ...

Problem with Firefox & IE8 not showing mouseover alt text for image maps

I have the following HTML: <div style="position: relative; text-align: left;"> <img id="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181_BaseImage" src="chart.gif" width="460px" height="240px" usemap="#chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181" border="0"> <map name="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181"> <area shape="poly" alt="Secon...

Tricky delay on mouseover

This is what I have currently: $("#cart-summary").mouseenter(function () { $('.flycart').delay(500).slideDown('fast'); }); $(".flycart").mouseleave(function () { $('.flycart').delay(500).slideUp('fast'); }).find('a.close').click(function(){ $(this).parents('.flycart').hide(); }); What it does is: If mouseover #cart-summary -> op...

Delay with hoverintent

var config = { sensitivity: 3, interval: 5000, timeout: 5000, }; $("#cart-summary").hoverIntent(function () { $('.flycart').slideDown('fast'); }, function() { $('.flycart').slideUp('fast'); }).find('a.close').click(function(){ $(this).parents('.flycart').hide(); }); ...this works, but...