<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>jQuery ve AJAX işlemleri</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){

$("input:submit").click(function(){

$("p#gizle").html("Yükleniyor...");
$("p#gizle").toggle('slow');
$("p#sari").css("background-color","yellow");
})

})
</script>

</head>
<body>

<p id="gizle" style="height:150px;">Bu gizlenecek</p>
<p id="sari">Bunun arkası sararcak</p>
<input type="submit" value="Tıkla">
</body>
</html>
basit ama bilmeyenlere faydası olur inş