hey

hey

<!doctype html>
<html>
<head>
<meta charset=utf-8/>
<title>AJAX: load</title>
</head>
 <body>
<a href="about.html">Learn More About Me</a>
<br>
<a href="contact.html">Contact Me</a>
<div class="wrap"></div>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
$('a').on('click',function( e ){
var href= $(this).attr('href'); /* its get the href to all links*/

$('div.wrap').load(href +'.container');
e.preventDefault();
});

</script>
</body>
</html>
error:
  1. OPTIONS file:///G:/Rashid/try/about.html.container jquery.js:8724
    1. x.extend.ajax jquery.js:8154
    2. x.fn.load jquery.js:7763
    3. (anonymous function) index.html:18
    4. x.event.dispatch jquery.js:5116
    5. v.handle jquery.js:4787