I have been using the code found here to make scrollable tabs http://jsfiddle.net/mekwall/dECtZ/. It works really well, but I have encountered a problem when trying to default the initial selected tab.
The tab falls outside of the displayed tab range (5 out of 13 tabs are displayed on load, and I have selected the 8th tab to be selected on load).
Please see an example of the issue here: http://jsfiddle.net/chriscdk/cf7yvLfz/
I am hoping there is something I can use in the plugin,
$(function() {
$("#tabs1").tabs({
scrollable: true,
changeOnScroll: false,
selected:8
});
});
but I have not been able to find anything looking at the JQuery API.