Answers for "how to create a modal popup in javascript"

0

javascript show modal

$('#myModal').modal('show')
Posted by: Guest on September-01-2020
0

javascript custom modal

Swal.fire({
  icon: 'error',
  title: 'Oops...',
  text: 'Something went wrong!',
  footer: '<a href="">Why do I have this issue?</a>'
})

this is javascript cdn put this code in your html body section ending the body section 
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
Posted by: Guest on February-24-2022

Code answers related to "how to create a modal popup in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language