Hola IngVikingo,
Sí, lo hago con JS, pero... no tengo forma de que funcione adecuadamente. Si alguien tiene el mismo problema o tiene alguna idea sobre cómo conseguirlo, lo agradecería.
El código que estoy usando es el siguiente:
Código:
<script>
$('#myTabs a').click(function (e) {
e.preventDefault()
$(this).tab('show')
})
$('#myTabs a[href="#profile"]').tab('show') // Select tab by name
$('#myTabs a:first').tab('show') // Select first tab
$('#myTabs a:last').tab('show') // Select last tab
$('#myTabs li:eq(2) a').tab('show') // Select third tab (0-indexed)
</script>
Gracias de antemano :)