<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=UTF-8"/>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">
</script>
<script>
var address="http://www.godoro.com/front-end/PageContent.php";
$(document).ready(function(){
$("#mycontent").load(address,function(response,status,xml){
if(status == "error"){
alert("İçerik yüklenemedi: " );
}
});
});
</script>
</head>
<body>
<h1> AJAX İçerme </h1>
<div id="mycontent">
Burası varsayılan içerik.
</div>
<br/>
</body>
</html>
Dosyayı İndir