It was all working fine in older version 4.0.... of google chrome..
But when i updated the google chrome version to latest version . then its not loading my external pages to main page.. that i was loading uinsg jquery load() function..
Its working good in Mozilla Firefox... no problem at all...
<script type="text/javascript">
$(document).ready(function(){
<!-- On Load Page -->
$('#leftcont').load('files/home.html');
$('#footer1').load('files/footer1.html');
$('#footer2').load('files/footer2.html');
$('#akdSights').click(function(){
$('#pageChange').load('files/akdsights.html');
});
$('#events').click(function(){
$('#pageChange').load('files/events.html');
});
$('#upcuming_events').click(function(){
$('#pageChange').load("files/upcomingevents.html");
});
$('#accomodation').click(function(){
$('#pageChange').load("files/accomodation.html");
});
$('#food').click(function(){
$('#pageChange').load("files/food.html");
});
$('#map').click(function(){
$('#pageChange').load("files/maps.html");
});
$('#gallerypage').click(function(){
$('#pageChange').load("gallery.html");
});
});
</script>