jquery-ui: replace tabs by own implementation

This commit is contained in:
Milan
2021-03-13 16:49:20 +01:00
parent eeb9e6272f
commit 56e4dc91de
7 changed files with 104 additions and 51 deletions

View File

@@ -1,7 +1,7 @@
// get current selected tab by tabs-id
function getSelectedTab(id){
var selector = '#'+id+" li.ui-tabs-active a";
var selector = '#'+id+" li.active a";
var tabValue = $(selector).attr("value");
return tabValue;
}