jQuery simple hover function


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $("#ID").hover(function () {
  2. // do something
  3. },
  4. function () {
  5. // do something
  6. });

Report this snippet


Comments


You need to login to view comments.