In my PHP server I return some data between them a button
$HTML = " <button id=\"btnExcluir\" style=\" width: 55px !important;\" onclick=\"Excluir();\" type=\"button \" data-toggle=\"tooltip\" data-placement=\"top\" title=\" Excluir itens selecionados\" class=\"btn btn-danger botaoExcluir\"> " ;
echo $HTML;
In my HTML / JS file I have my Ajax request that fetches this data from the Php server, and includes them in a div with the Data Id ... Until then it appears normally and in my Jquery file I have the following function
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
In order to stylize the tooltip of my buttom, it does not change the type. How can I add this style to the button?