I am using this code, When I run this code in browser I am getting a blank page, Help me out please, Thanks in advance.
<html>
<head>
<script src="js/jquery-3.3.1.js"></script>
<script>
$(function(){
jQuery.noConflict();
$("#includedContent").load("a.html");
});
</script>
</head>
<body>
<div id="includedContent"></div>
</body>
</html>
my a.html is following
<html>
<p>this is included file</p>
</html>