“tostadas js” Código de respuesta

toastify js

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

tostadas 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

tostadas 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

Respuestas similares a “tostadas js”

Preguntas similares a “tostadas js”

Más respuestas relacionadas con “tostadas js” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código