just one quick question about the select event of the jQuery UI Tabs
$( ".selector" ).tabs({
select: function(event, ui) { ... }
});
I know I can get the index of the selected tab inside the callback function by doing:
ui.index
But my question is, how do I get all the properties that are available to me from the ui object? (ui.index for example is just one of them). What are the other ui.SOMETHING that are available to me for use? (apart from index, what else can SOMETHING be replaced by?)
Anybody please let me know
Thank you
Easy to find out yourself by logging “ui” to console: