get the current tab in jQuery UI tabs

后端 未结 11 1085
無奈伤痛
無奈伤痛 2021-01-01 16:46

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

11条回答
  •  感情败类
    2021-01-01 17:23

    What worked for me was:

    var current_tab = $("#tabs .ui-state-active a").attr('href');
    

提交回复
热议问题