محو کردن یک قسمت از سایت با جی کوئری
<html>
<head>
<title></title>
<style type=”text/css”>
#box {
text-align: center;
line-height: 220px;
font-size: 20px;
height: 320px;
width: 320px;
background-color: #F00;
}
</style>
<script type=”text/javascript” src=”jquery-1.3.2.min.js”></script>
<script type=”text/javascript”>
$(function() {
$(‘a’).click(function() {
$(‘#box’).slideUp(‘4000’);   <!– hide(‘slow’) –>
});
});
</script>
</head>
<body>
<div id=”box”>jquery</div>
<a href=”#”> Click Here To Fade out !</a>
</body>

</html>