$(function() {
$( "#tabs" ).tabs({
event: "mouseover", // Mouse activates drop down menus
active: false, // Navs do not default to first one open
collapsible: true, // Mouse click can close a tab
hide: { effect: "slideUp", duration: 200 }, // Effect
show: { effect: "slideDown", duration: 200 } // Effect
});
});
This routine does what you expect. It uses a MouseOver to activate the tab but you can remove this line and activate via Click. I am using this code now and it works.