Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
- swal({
- title:"confirmation",
- text: "Are You Sure?",
- content: "input",
- buttons: {
- cancel: true,
- confirm: "Submit"
- }
- }).then( val => {
- if(val) {
- swal({
- title: "Thanks!",
- text: "You typed: " + val,
- icon: "success"
- });
- }
- });
- });
- swal({
- title:"title",
- text: "sssss?",
- buttons: {
- cancel: true,
- confirm: "Submit"
- }
- }).then( val => {
- if(val) {
- swal({
- title: "Thanks!",
- text: "You clicked submit",
- icon: "success"
- });
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement