Is it possible, using jQuery Tabs (Sortable) to pre-sort them by the current day?
<script type="text/javascript">
$(function() {
$("#tabs").tabs().find(".ui-tabs-nav").sortable({axis:'x'});
});
</script>
I have 7 tabs, and the client wants the current day to display first.
Here is the site with tab examples: http://draft3.buildthesis.com/
I figured it out for myself. Rather than jack with any java, I build a conditional switch, and used the .CSS ui-tabs-selected instead. Now, whatever day of the week it is, that tab will display first.