Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/demoadmin.ncriptech.com/../hrms.ncriptech.com/public/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; // Basic Message $(document).ready(function () { // Basic Message $("#otSweetAlert1").on("click", function () { Swal.fire("Here's a message!"); }); // Multiple Message Message $("#otSweetAlert2").on("click", function () { Swal.fire("Here's a message!", "It's pretty, isn't it?"); }); // Success Message $("#otSweetAlert3").on("click", function () { Swal.fire("Good job!", "You clicked the button!", "success"); }); // Confirm Dialog $("#otSweetAlert4").on("click", function () { Swal.fire({ title: "Are you sure?", text: "You won't be able to revert this!", icon: "warning", showCancelButton: true, confirmButtonColor: "#3085d6", cancelButtonColor: "#d33", confirmButtonText: "Yes, delete it!", }).then((result) => { if (result.isConfirmed) { Swal.fire("Deleted!", "Your file has been deleted.", "success"); } }); }); // Perameter Passing $("#otSweetAlert5").on("click", function () { const swalWithBootstrapButtons = Swal.mixin({ customClass: { confirmButton: "btn btn-success", cancelButton: "btn btn-danger", }, buttonsStyling: false, }); swalWithBootstrapButtons .fire({ title: "Are you sure?", text: "You won't be able to revert this!", icon: "warning", showCancelButton: true, confirmButtonText: "Yes, delete it!", cancelButtonText: "No, cancel!", reverseButtons: true, }) .then((result) => { if (result.isConfirmed) { swalWithBootstrapButtons.fire( "Deleted!", "Your file has been deleted.", "success" ); } else if ( /* Read more about handling dismissals below */ result.dismiss === Swal.DismissReason.cancel ) { swalWithBootstrapButtons.fire( "Cancelled", "Your imaginary file is safe :)", "error" ); } }); }); $("#otSweetAlert6").on("click", function () { Swal.fire({ title: "Sweet!", text: "Modal with a custom image.", imageUrl: "https://unsplash.it/400/200", imageWidth: 400, imageHeight: 200, imageAlt: "Custom image", }); }); // Custom Position $("#otSweetAlert7").on("click", function () { Swal.fire({ position: "top-end", icon: "success", title: "Your work has been saved", showConfirmButton: false, timer: 1500, }); }); });