get the current tab in jQuery UI tabs

后端 未结 11 1123
無奈伤痛
無奈伤痛 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:13

    //for getting selected tabs

    var tabs = $("#tabs").children().find(".current").attr('href');

提交回复
热议问题