Hover Item With Jquery
Solution 1:
I assume you mean the pseudo class :hover
that you've associated with a link (for example). As you hover over that link, you want to invoke all other link's :hover
styles.
Unfortunately, you can not invoke the :hover
styles from jQuery, that requires that you actually move your mouse pointer over that element. You have to use classes and utilize jQuery's hover event.
Solution 2:
You can achieve this by addressing all of the items in your collection at the same time in your hover event handlers
var items = $(".some-class-applied-to-many-different-items");
items.hover(function() {
// Mouseover state
items.addClass("blah"); // <- for example
},
function() {
// Mouseout state
items.removeClass("blah");
});
Solution 3:
If I understand your question correctly, you've added a hover
event using jQuery, and you'd like to trigger that event manually regardless of the mouse.
If I understood correctly, you want to call the mouseenter
to trigger the mouseenter
event.
If I've understood incorrectly, and you actually have a :hover
CSS rule which you'd like to trigger using Javascript, that's not possible.
Instead, you should add a class name to the rule (eg, something:hover, something.FakeHover { ... }
), and add that class name using jQuery. (eg, $(...).addClass('FakeHover')
).
Solution 4:
In jQuery, the trigger
function allows you to trigger events (includingmouseover
, I believe) on elements.
In straight JavaScript, if you’ve assigned a function to an element’s event handler, you can of course call that whenever you want. E.g.
functionmouseoverHandler() {
// Do something
}
// Assign function to element’s event handlerdocument.getElementById('link1').onmouseover = mouseoverHandler
// Call that functiondocument.getElementById('link1').onmouseover();
Post a Comment for "Hover Item With Jquery"