Return to Snippet

Revision: 8970
at October 16, 2008 06:35 by davebowker


Initial Code
$(document).ready(function() {
	$('.ticker-prev, .ticker-next').hide();
	$('#topbar').hoverIntent(function() {
		$('.ticker-prev, .ticker-next').fadeIn(500);
	},
	function() {
		$('.ticker-prev, .ticker-next').fadeOut(500);
	});
});

Initial URL


Initial Description


Initial Title
Jquery Hover (HoverIntent)

Initial Tags
jquery

Initial Language
JavaScript