- AJAX, . URL-, ββ . , .
, , a, jQuery :
<a href="page1.html" class="ajaxLoad">Page 1</a>
<script>
$(function(){
$("a.ajaxLoad").each(function(){ this.href = '#' + this.href })
});
</script>
JavaScript , _1.html, . , . - , , JavaScript, ( ).
: , , , JavaScript . , load - , .
$("a.ajaxLoad").click(function(e){
e.preventDefault();
$("#content").load(this.href + ' #content');
});