Answers for "switch alert 2"

1

switch alert 2

$ npm install sweetalert2
Posted by: Guest on February-07-2021
0

switch alert 2

<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
Posted by: Guest on June-27-2021
0

switch alert 2

Swal.fire({
  title: 'Error!',
  text: 'Do you want to continue',
  icon: 'error',
  confirmButtonText: 'Cool'
})
Posted by: Guest on May-19-2021
0

switch alert 2

<script src="sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2.min.css">
Posted by: Guest on August-27-2021
0

switch alert 2

// ES6 Modules or TypeScript
import Swal from 'sweetalert2'

// CommonJS
const Swal = require('sweetalert2')
Posted by: Guest on August-27-2021
0

switch alert 2

<script src="sweetalert2.all.min.js"></script>
Posted by: Guest on August-27-2021
0

switch alert 2

import Swal from 'sweetalert2/dist/sweetalert2.js'

import 'sweetalert2/src/sweetalert2.scss'
Posted by: Guest on August-27-2021

Browse Popular Code Answers by Language