Selecting tabs from javascript
I found some example code in the docs for selecting tabs via links.
I came up with this:
var $tabs = $('#tabs').tabs();
$('#find_out_more_link').click( function(){
$tabs.tabs('select', 1);
});
This works, but my mouse pointer does not change when I hover over
the link. It usually changes to a pointer finger. Now it just stays
as the text selection bar. I think this will be confusing to users;
There is no visible change when hovering over the link. It looks like
something that can not be clicked.
Thanks,
Toby