gasolinitrafikkskole
Hi
Here is example code
<div class="col-lg-8">
<h3 class="sub-title">Tabs</h3>
<ul class="nav nav-tabs">
<li class=""><a href="#home" data-toggle="tab" aria-expanded="false">Home</a></li>
<li class=""><a href="#profile" data-toggle="tab" aria-expanded="false">Profile</a></li>
<li class="disabled"><a>Disabled</a></li>
<li class="dropdown active"><a class="dropdown-toggle" href="#" data-toggle="dropdown" aria-expanded="false"> Dropdown </a>
<ul class="dropdown-menu">
<li class="active"><a href="#dropdown1" data-toggle="tab" aria-expanded="true">Action</a></li>
<li class=""><a href="#dropdown2" data-toggle="tab" aria-expanded="false">Another action</a></li>
<li><a href="#dropdown2" data-toggle="tab" aria-expanded="false">Another action</a></li>
</ul>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<div id="home" class="tab-pane fade">
<p>In the area of graphical user interfaces (GUI), a <strong>tabbed document interface</strong> (TDI) or a Tab is one that allows multiple documents to be contained within a single window, using tabs as a navigational widget for switching between sets of documents. It is an interface style most commonly associated with web browsers, web applications, text editors, and preference panes.</p>
<p>GUI tabs are modeled after traditional card tabs inserted in paper files or card indexes (in keeping with the desktop metaphor).</p>
</div>
<div id="profile" class="tab-pane fade">
<p>In the area of graphical user interfaces (GUI), a <strong>tabbed document interface</strong> (TDI) or a Tab is one that allows multiple documents to be contained within a single window, using tabs as a navigational widget for switching between sets of documents. It is an interface style most commonly associated with web browsers, web applications, text editors, and preference panes.</p>
<p>GUI tabs are modeled after traditional card tabs inserted in paper files or card indexes (in keeping with the desktop metaphor).</p>
</div>
<div id="dropdown1" class="tab-pane fade active in">
<p>In the area of graphical user interfaces (GUI), a <strong>tabbed document interface</strong> (TDI) or a Tab is one that allows multiple documents to be contained within a single window, using tabs as a navigational widget for switching between sets of documents. It is an interface style most commonly associated with web browsers, web applications, text editors, and preference panes.</p>
<p>GUI tabs are modeled after traditional card tabs inserted in paper files or card indexes (in keeping with the desktop metaphor).</p>
</div>
<div id="dropdown2" class="tab-pane fade">
<p>In the area of graphical user interfaces (GUI), a <strong>tabbed document interface</strong> (TDI) or a Tab is one that allows multiple documents to be contained within a single window, using tabs as a navigational widget for switching between sets of documents. It is an interface style most commonly associated with web browsers, web applications, text editors, and preference panes.</p>
<p>GUI tabs are modeled after traditional card tabs inserted in paper files or card indexes (in keeping with the desktop metaphor).</p>
</div>
</div>
</div>
The link of the dropdown menu item and Div id must be same.
for example on above code you can see #dropdown2 is menu item link and you will find the content Div is also same.
For each menu you have to use different ID.
Menu item and Div ID must be match.