I am currently working on a web form and my jquery tabs are not showing when i run the page.I included this inside the header:
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(document).ready(function(){
$( "#tabs" ).tabs();
} );
</script>
and this inside the body:
div id="tabs">
<div id="tabs-1">
<div id="tabs-1">
<p>...</p>
</div>
</div>
<div id="tabs-2">
<p>,,,</p>
</div>
<ul>
<li><a href="#tabs-1">Next</a></li>
<li><a href="#tabs-2">Next2</a></li>
</ul>
</div>