I was wondering, how can I make jquery UI not to adds any class when it initializes the $.tabs()
?
This is my html structure
<link href="smoothness/jquery-ui-1.8.20.custom.css" rel="stylesheet" type="text/css" />
...
<link href="estilos_scoreboard.css" rel="stylesheet" type="text/css" />
...
<div id="tab_container">
<ul class="ui-tabs-nav">
<li><a href="#tab_equipos"><span>Equipos</span></a></li>
<li><a href="#tab_jugadores"><span>Jugadores</span></a></li>
<li><a href="#tab_partidos"><span>Partidos</span></a></li>
<li><a href="#tab_directos"><span>Directos</span></a></li>
</ul>
<div id="tab_equipos">... cargando ...</div>
<div id="tab_jugadores">... cargando ...</div>
<div id="tab_partidos">... cargando ...</div>
<div id="tab_directos">... cargando ...</div>
</div>
javascript code:
$(document).ready(function(){
$('div#tab_container').tabs();
$('div#tab_equipos').load('lv_equipos.php');
});
In estilos_scoreboard.css
I have my css styles which works great if I don't load smoothness/jquery-ui-1.8.20.custom.css
So I was wondering, is there any way to tell $.tabs()
not to apply none of its styling?
//note: I am asking this because I'm not the one that code it this way, but the one to apply quick fixes and I need smoothness/jquery-ui-1.8.20.custom.css
for jquery UI Autocomplete and other features