<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
</head>
<body>
<form action="yaz.php" method="post" id="denemeformu">
<input type="text" name="deneme"><input type="submit" value="Dene">
</form>
<div id="sonuc"> </div>
<script type="text/javascript">
$("#denemeformu").ajaxForm({
target: "#sonuc"
});
</script>
</body>
</html>veya
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#denemeformu").ajaxForm({
target: "#sonuc"
});
});
</script>
</head>
<body>
<form action="yaz.php" method="post" id="denemeformu">
<input type="text" name="deneme"><input type="submit" value="Dene">
</form>
<div id="sonuc"> </div>
</body>
</html>olarak deneyin