So i have paid a coder to code to code me a side bar https://prnt.sc/siicq1
Has you can see there are buttons on the top but when im pressing the buttons it says it can not find the page
<ul class="menu-container horizontal-uniform width-100 margin-bottom-3 no-bot-border-rad">
<li class="menu-tab" onClick="membersTab('view=follower_list', 0); return false;">Follower List</li>
<li class="menu-tab decorate-linethrough" onClick="membersTab('view=social_feed', 0); return false;">Social Feed</li>
<li class="menu-tab" onClick="membersTab('view=online_friends', 0); return false;">Friends Online</li>
<li class="menu-tab" onClick="membersTab('view=friends_list', 0); return false;">Friends List</li>
<li class="menu-tab" onClick="membersTab('view=ignore_list', 0); return false;">Ignore List</li>
<li class="menu-tab-end menu-tab-selected" onClick="membersTab('view=online', 0); return false;">Online Members</li>
</ul>
<ul class="menu-container horizontal-uniform width-100 margin-bottom-3 no-border-rad">
<script>
$($("#membersTab").contents().find('.add-section')).on("click",function(e){
e.preventDefault();
$(this).parent().after("<li>"+$(this).parent().html()+"</li>");
});
</script>
<script>
$($("#menu-tab").contents().find('.add-section')).on("click",function(e){
e.preventDefault();
$(this).parent().after("<li>"+$(this).parent().html()+"</li>");
});
</script>
Now i thought i would ask here to make sure im correct the javascript is just adding .html to end so for example
<li class="menu-tab" onClick="membersTab('view=follower_list', 0); return false;">Follower List</li>
would load follower_list.html ?