robinparisi / tingle

⚡ 2kB vanilla modal plugin, no dependencies and easy-to-use
https://tingle.robinparisi.com
MIT License
1.55k stars 185 forks source link

Remove button in footer #149

Closed Abdvkh closed 3 years ago

Abdvkh commented 3 years ago

Feature to remove button which is added to footer

robinparisi commented 3 years ago

Hi,

The addFooterBtn()method return the element, so you can just do:

let btnToRemove = modal.addFooterBtn('My button', 'tingle-btn tingle-btn--primary', function() {
    alert('click on button!');
});

Then

btnToRemove.remove()