0
When I click on the + in my select, my system shows and adds an item in the div with "tabs".
only when it shows the div that was hidden, it was on top of my select (as shown in the image).
function:
function add(id_sistema){
$('#tabs').append("<div id='tabs-2'></div>");
$("#tabs").tabs("refresh");
$("#tabs").show();
$("#divDataJson").show();
}
Briefly it’s this function when I click on +.
if you take this div from id and add a z-index to it not right? example $('#tabs-2'). css("z-index","1");
– Anderson Henrique
worked, that I did not know thank you. want to create a response?
– Julio Henrique
will create thanks @Juliohenrique97
– Anderson Henrique
it would not be easier to put the
z-index
in her style at the time of append ali in the string instead of using jQuery for that?<div id='tabs-2' style='z-index: 1;'></div>
– Paulo Roberto Rosa