I'm trying to use jquery to simply load another html file in my current html file, but nothing is showing. I tried following one of the answers here, but I'm still not seeing anything appear on my html file.
about.html
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.4.js">
$(function(){
$("#topbar").load("b.html");
});
</script>
</head>
<body>
<div id="topbar"></div>
</body>
</html>
b.html
<p> This is the included file </p>
what am I doing wrong here?