Does anyone know how to create jquery ui tabs within a selected option on a mobile version? I am having trouble with this and would appreciate any assistance. My design is responsive, with desktop versions using jquery tabs and the mobile version using select options.
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
<li><a href="#tabs-3">Aenean lacinia</a></li>
</ul>
<div id="tabs-1">
<p>tabs-1</p>
</div>
<div id="tabs-2">
<p>tabs-2</p>
</div>
<div id="tabs-3">
<p>tabs-3</p>
</div>
</div>