i solve it like this.
———————
var tabs = $(“#tabid”);
var headhtm = tabs.find(“ul.jqx-tabs-title-container”)[0].outterHTML;
var bodyhtm = tabs.find(“ul.jqx-tabs-content”).html();
tabs.empty();
tabs.append(headhtm);
tabs.append(bodyhtm);
tabs.jqxTabs({});