/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(document).ready(function() { $('.ticker-prev, .ticker-next').hide(); $('#topbar').hoverIntent(function() { $('.ticker-prev, .ticker-next').fadeIn(500); }, function() { $('.ticker-prev, .ticker-next').fadeOut(500); }); });