head.js 211 B

12345678
  1. $(function () {
  2. $(".dropdown").mouseover(function () {
  3. $(this).addClass("open");
  4. });
  5. $(".dropdown").mouseleave(function(){
  6. $(this).removeClass("open");
  7. })
  8. })