I am using jQuery UI Tabs inside of the jQuery UI dialog window.
I\'ve come across an instance, where I need to find the id of the current tab when clicking on one o
What worked for me was:
var current_tab = $("#tabs .ui-state-active a").attr('href');