[HELP] Hover Disappear.

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Code:
$(function() {
  $('.button').on('hover', function() {
    var $elemsToHide = $('.element1, .element2, #element3');
    $elemsToHide.css("display", "none");
  });
});
 

Users who are viewing this thread

Top