I'm wondering why my javascript isn't working to append to the end of the docmap div tag? At least I try it in chrome and I don't see it say: "Some new content!" in the docmap div tag.
<html>
<header>
<style>
#docmap {
background-color: #f0f0f0;
height: 100%;
width: 200px;
position: fixed;
}
#main {
margin-left: 200px;
position: 200px;
padding: 20px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
//alert("hey!");
var docmap = $("#docmap");
docmap.append('<br>Some new content!');
</script>
</header>
<body>
<div id="docmap">
<ul>
<li> hello
<li> hi
<li> howdy
</ul>
</div>
<div id="main">
<h1>header1</h1>
<h2>header2 a</h2>
<h2>header2 b</h2>
<h1>header1 a</h1>
</div>
</body>
</html>