Handle scroll event
Description
The following code shows how to handle scroll event.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- ww w . j a va 2s . c o m-->
$(window).scroll(function() {
$("span").css("display", "inline").fadeOut("slow");
});
});
</script>
</head>
<body>
<body>
<span>Scroll happened! java2s.com</span>
</body>
</html>