I want my nav bar to stay collapsed at all times. I have tried looking at other examples, but when I try them, the code will make it stay collapsed, but once I click it then it will only stay open for a second till it closes back. I would also like to make it where the nav bar opens on the right hand side of the page and just cover up the website content over there until it is closed. Any ideas for that?
<DOCTYPE html>
<html>
<head>
<title>Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Bootstrap stylesheets-->
<link rel="stylesheet" href="/Users/jordan/Desktop/My EAST Website/stylesheets/bootstrap.min.css">
<!--Main Stylesheets-->
<link rel="stylesheet" href="/Users/jordan/Desktop/My EAST Website/stylesheets/styles.css">
<!--js import of bootstrap-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<!--Top Navigation Bar-->
<nav class="navbar navbar-inverse always-open">
<div class="navbar-header">
<a class="navbar-brand" href="#">Name</a>
<button type="button" class="navbar-toggle"
data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<!--end of nav bar-->
</body>
</html>