I have a page that transforms a <ul>
_list into tabs with jQuery , and on the first page I need a button to redirect to the next tab, without having to click the mouse.
I have tried with onClick
or a JS function, but it opens in a new window or in the same window instead of selecting the tab.
Html:
<div id="tabs">
<ul>
<li><a href="#tab2">Arquivo</a></li>
<li><a href="#tab3">Download</a></li>
<li><a href="#tab4">Parâmetros</a></li>
</ul>
</div>
JavaScript:
<script language="javascript">
$(function (){
$("#tabs").tabs({active:1});
});
</script>