JSFiddle - React, Tailwind, and code Playground
by ncapito
HTML
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<ul id='tabs'>
<li><a href="/ispSelection"> Schedule a Case</a></li>
<li><a href="/reports" >Quick View Cases Scheduled Today</a></li>
<li><a href="#Report">Report</a></li>
<li><a href="Admin" title="Admin" id="admin">Add/Edit ISP</a></li>
</ul>
<div id="Report">
<h4>Please click on below to see the report</h4>
<a href="/ics/reports?pdfReport" target="_blank">Daily Outgoing Report</a>
</div>
JavaScript
jQuery(document).ready(function() {
jQuery("#tabs").tabs();
jQuery("#tabs").tabs({disabled: [1,2,3,4,5]});
jQuery("#tabs").tabs( "option", "disabled", [1,2,3,4,5] );
});