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
Use following in case of jQuery 1.9+,
var currentTabId = $('div[id="mytabs"] ul .ui-tabs-active').attr("id");