
Hi, I created a page index.html on desktop . this page content following code.
<html>
</head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({ url:"http://www.google.com/", cache:false, success:function(output){
$("#middle").html(output);
}
});
});
</script>
</html>
<body>
<div id="middle">
</div>
</body>
</html>
But when i load this page google page not open on my browser. how google page will load using ajax.
thanks in advance.