Questions tagged [mouseenter]

For issues relating to setting up, subscribing to, or handling mouseenter events.

Mouseenter is an event that fires when the user moves the mouse inside of the element you registered the event on.

576 questions
0
votes
2 answers

Current class - mouseenter jQuery Animation

My brain just stuck its 4:40 AM and I don't know what to do. Either I don't have solution in my head or I should sleep. However I don't know how to animate only currently selected/hovered class and not all of them. Here's the HTML part:
dvlden
  • 2,402
  • 8
  • 38
  • 61
0
votes
1 answer

tabs- disable mouseenter onclick until mouseleave

How to change js so tab content will be hidden after tab click(page load) until mouseleave tab? Here is all sample: //
Nina
  • 31
  • 7
0
votes
3 answers

Tabs - using hover (mouseeneter and leave) and click

I have had problem with using tabs. I tried to implement tabs functionality for example as site http://mashable.com. Tabs can be hover and show tab content by hover. If I click tab, tab content should be hidden, unvisible UNTIL mouseleave
  • .…
  • Nina
    • 31
    • 7
    0
    votes
    1 answer

    JQuery mouseout timeout

    Similar problems have been dealt with before but I believe mine's slightly different owing to the use of the bind() function. Anyhow... $('.overlay').bind("mouseenter",function(){ $(this).fadeTo('slow', 0); }).bind("mouseleave",function(){ …
    strangerpixel
    • 798
    • 1
    • 11
    • 27
    0
    votes
    2 answers

    jQuery document layout (multiple functions)

    So I am a junior c# developer, and at the moment I am currently writing up a new website for myself. I am currently trying to make it so that I am able to have a class on say, an anchor tag called "default", then when you are to mouseenter() over…
    OhTehNoes
    • 15
    • 1
    • 1
    • 4
    0
    votes
    2 answers

    jquery mouseent/leave to make div appears

    I am looking to hover over my list item and have an effect similar to something like facebook chat is my best example..I am able to get the first div to appear but I believe this may be a selector issue because I cant get the rest working…
    Blake
    • 91
    • 2
    • 15
    0
    votes
    3 answers

    use JSON variable in jQuery dynamically

    I have two DIVs, #placeholder AND #imageLoad. When the user clicks on a particular thumb its larger version (thumb2) should then appear in #imageLoad DIV. Here is the jQuery that needs to be fixed: $.getJSON('jsonFile.json', function(data) { …
    Jim22150
    • 511
    • 2
    • 8
    • 22
    0
    votes
    1 answer

    Jquery mouseOver/mouseEnter happening when not supposed to

    I'm working on a navigation plug-in which takes a list and places each item in its on div which will act like a button. Its similar to a standard drop down menu. My problem comes in at the function setFocus(). This will take a selected div and add a…
    0
    votes
    1 answer

    detecting first focus/touch into HTML form field with jQuery

    I have came across an issue with my application when using the iPad. For a specific form I use jQuery to bind events to form elements, I have a "tool tip" that shows when you mouse over the form field or focus is put on it, this works fine on the…
    crmpicco
    • 16,605
    • 26
    • 134
    • 210
    0
    votes
    1 answer

    mouseenter and leave that applies to two DOM elements

    I have a DOM element that, when hovered over, should animate the opacity (to 1) of another DOM element. Because of the z order of things, I can't nest the second element, but I want the interaction such that as long as you over either DOM element,…
    mheavers
    • 29,530
    • 58
    • 194
    • 315
    0
    votes
    1 answer

    Stop function when pressing ctrl jQuery

    So I am making a little game where you have to press Ctrl to stop a div from jumping randomly. However I can't get it working... The jumpRandom function works fine, until i put the randomJump(){return false;}; inside the if (event.ctrlKey) {}. What…
    Carl Papworth
    • 1,282
    • 2
    • 16
    • 35
    0
    votes
    1 answer

    jquery issue with mouseenter mouseleave on hover

    I'm having an issue with jquery mouseenter / mouseleave on element hover where stuff continually flickers. So it kinda works, but it flickers. Here is the code I have (on ready): myLinkElement.bind({ mouseenter: function (e) { …
    IntricatePixels
    • 1,219
    • 6
    • 29
    • 55
    0
    votes
    1 answer

    Mouseleave function firing unnecessarely?

    I am working on jQuery mouseleave event here I have ckeditor I need to show ckeditor when I enter the mouse and need to fire when mouse leave here I had done that when mouse entered it showing its working and in ckeditor writing some text and when…
    Sadda-shutu
    • 1,309
    • 2
    • 18
    • 42
    0
    votes
    1 answer

    jquery - Toggle disjointed div on mouseenter and mouseleave?

    I've tried searching for similar questions and using those responses for my situation, but either I'm doing it wrong (probable...) or it's not exactly what I need? Essentially, I'm trying to toggle .block-5 when hovering over #b-hover-nav. …
    user1154488
    • 157
    • 4
    • 12
    0
    votes
    1 answer

    union jquery on mouseenter

    I have a Nav that has a drop down sub menu. When the drop down appears i would like a union of menu + drop down like this: so that if the mouse exits this entire block in pink, then the sub nav disappears. Currently, if the mouse exits only the…
    t q
    • 4,593
    • 8
    • 56
    • 91