jquery fedein background color

Solutions on MaxInterview for jquery fedein background color by the best coders in the world

showing results for - "jquery fedein background color"
Meryl
11 Jan 2020
1  $("div" ).hover(
2  function() {
3     $(this).animate({backgroundColor: "#fff"}, 'slow');
4  }, function() {
5    $(this).animate({backgroundColor:"#000"},'slow');
6  });
7