This is not loading page where is the error ? ,this is using jquery version 1.9.1 ,the page
http://localhost/ReportsSec/MapNavigation.aspx
contains google maps api
the error given below:
Refresh the page to see messages that may have occurred before the F12 tools were opened. SCRIPT5009: 'google' is undefined Default.aspx, line 116 character 1 SCRIPT257: Could not complete the operation due to error 80020101. jquery-1.9.1.js, line 602 character 4
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script>
$(document).ready(function () {
$("button").click(function () {
$("#div1").load("http://localhost/ReportsSec/MapNavigation.aspx");
});
});
</script>
</head>
<body>
<div id="div1" style="width:450px;height:450px"></div>
<button>Get External Content</button>
</body>
</html>