Jquery Hover (HoverIntent)


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



Copy this code and paste it in your HTML
  1. $(document).ready(function() {
  2. $('.ticker-prev, .ticker-next').hide();
  3. $('#topbar').hoverIntent(function() {
  4. $('.ticker-prev, .ticker-next').fadeIn(500);
  5. },
  6. function() {
  7. $('.ticker-prev, .ticker-next').fadeOut(500);
  8. });
  9. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.