Something like that
$("#id_of_tab_element").tabs();
var textElement = $("<span></span>");
textElement.text("text here...");
apply styles and add
textElement.css('position', 'absolute');
textElement.css('right', '20px');
$("#id_of_tab_element").append(textElement);
you can also define styles in css and apply the class to an element
See this script
source
share