Change page without reloading site
Use onclick event of a element to pass in id of <div> we want to display
<a onclick="changePage(event, 'skills');">Skills</a><div> being passed to ChangePageJS needs to have class="section"
<div id="skills" class="section"></div>Sections we don't want displayed before clicking its corresponding link to show it should start with display: none; and we should display the first section we want showing, if any
.section { display: none; }
#about { display: block; }