habibjutt
12/24/2015 - 6:48 PM

jQuery Functions on Hover On And Off.js

$("a").hover(
  function () {
    // code on hover over
  },
  function () {
    // code on away from hover
  }
);