Answers for "on hover active until i hover next css"

CSS
0

on hover active until i hover next css

$('div').on('mouseover', function() {
  $('div').removeClass('hover');
  $(this).addClass('hover');
});
Posted by: Guest on April-25-2022
0

on hover active until i hover next css

$('div').on('mouseover', function() 
  $('div').removeClass('hover');
  $(this).addClass('hover');
});
Posted by: Guest on April-25-2022

Browse Popular Code Answers by Language