“evento jQuery Hover” Código de respuesta

función jQuery flotante

$(document).ready(function() {
            $("p").hover(function() {
                $(this).css("background-color", "green");
            }, function() {
                $(this).css("background-color", "yellow");
            });
        });
Hungry Hippopotamus

JQuery on Hover Event

$(".selector").on({
    mouseenter: function () {
        //stuff to do on mouse enter
    },
    mouseleave: function () {
        //stuff to do on mouse leave
    }
});
Weary Wildebeest

pasar el rato

$( "div.enterleave" )
  .mouseenter(function() {
    n += 1;
    $( this ).find( "span" ).text( "mouse enter x " + n );
  })
  .mouseleave(function() {
    $( this ).find( "span" ).text( "mouse leave" );
  });
Sergiu The Man

jQuery flotante

//color will change to yellow on hover 
//after hover it will come to white
$("span").hover(function(){
        $(this).css("background-color", "yellow");
        }, function(){
        $(this).css("background-color", "white");
      });
Debmalya Banerjee

evento jQuery Hover

$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );
WARRIOR Grebe

Respuestas similares a “evento jQuery Hover”

Preguntas similares a “evento jQuery Hover”

Más respuestas relacionadas con “evento jQuery Hover” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código