Tab Index in 1.10.3

Tab Index in 1.10.3

After upgrading to Jquery 1.9.1 and Jquery UI 1.10.3, I am having hard time getting the index of the tab, which was perfectly working with older version ( Jquery 1.6.1 and Jquery UI 1.8).

Can someone please let me know why I am not getting the tab index ? Here is my code snippet :

        $('#issueLevelTabs').tabs({
            beforeActivate: function(event, ui){
                alert(ui.newTab.index)
                },
                active: 2
        });