<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>
		$(document).ready(function(){
		
			$("button").click(function(){
			
				$("#mycontent").load(
					"http://www.godoro.com/front-end/ContentText.php");
			
			});
		});
	</script>
</head>
<body>
	<h1> AJAX Yükle </h1>
	<div id="mycontent">
		Burası eski içerik.
	</div>
	<br/>
	<button>Yeni İçeriği Getir</button>
</body>
</html>
				
				Dosyayı İndir