I using jquery tabs, and it's working fine.
I also want to add a button to edit the label of the tab, but jquery don't listening the clic on my button, like a z-index problem. I put a "z-index: 10000;" on the button, but it don't work, i just changing of tab.
My tab :
<li><a href="#tab1"><span style="z-index: 100000;" class="button
editLibelleCategorie"></span>
<br>Tabs 1</a>
</li>
and my js code :
$(document).on('click', '.editLibelleCategorie', function()
{
alert('ok');
$("#modalEditCategorie").modal('show');
});
Alert is not display when I click on button ...
Thank for your help !