-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (21 loc) · 1.15 KB
/
index.js
File metadata and controls
21 lines (21 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
document.getElementById("navMenu").innerHTML =
"<nav class='navbar navbar-inverse' style='border-radius:0px;'>" +
"<div class='container-fluid'>" +
"<div class='navbar-header'>" +
"<a class='pull-left' href='https://www.whenhub.com/'>" +
"<img src='https://cdn.whenhub.com/img/logo/logo-185x36.png' style='padding: 7px;'>" +
"</a>" +
"</div>" +
"<ul class='nav navbar-nav'>" +
"<li class='first-item active'><a href='/index.html'>Developer Samples Home</a></li>" +
"<li class='second-item'><a href='/javascriptEmbed/embed-demo.html'>JavaScript Embed</a></li>" +
"<li class='third-item dropdown'>" +
"<a class='dropdown-toggle' data-toggle='dropdown' href='#'>Display Samples" +
"<span class='caret'></span></a>" +
"<ul class='dropdown-menu'>" +
"<li class='third-a-item'><a href='/display/jquerySample/jquery-demo.html'>Jquery Sample</a></li>" +
"</ul>" +
"</li>" +
"</ul>" +
"</div>" +
"</nav>";