Answers for "on hover add class on children jquery"

0

on hover add class on children jquery

$(document).ready(function()
  {
    $('li.active').hover(
      function(){ 
        $(this).children("a").addClass("icon-white"); //Add an active class to the anchor
      },
      function() {
        $(this).children("a").removeClass("icon-white"); //Remove an active class to the anchor
      }
   )
 });
Posted by: Guest on April-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language