“toast js” Réponses codées

toastiftifier JS

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
Crowded Cheetah

toast js

var toastTrigger = document.getElementById('liveToastBtn')
var toastLiveExample = document.getElementById('liveToast')
if (toastTrigger) {
  toastTrigger.addEventListener('click', function () {
    var toast = new bootstrap.Toast(toastLiveExample)

    toast.show()
  })
}
Arrogant Alligator

toast js

new Toast({
  message: 'This is an example with custom buttons',
  type: 'success',
  customButtons: [
    {
      text: 'Refresh the page',
      onClick: function() {
        window.location.reload();
      }
    },
    {
      text: 'Follow @ireaderinokun',
      onClick: function() {
        window.open('https://twitter.com/ireaderinokun');
      }
    }
  ]
});
Mateusz Przybylski

Réponses similaires à “toast js”

Questions similaires à “toast js”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code