Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $("#ngehe").click(function() {
- swal({
- title: "Are you sure?",
- text: "Once deleted, you will not be able to recover this data!?",
- icon: "warning",
- buttons: true,
- dangerMode: true,
- })
- .then((willDelete) => {
- if (willDelete) {
- $.ajax({
- type: "GET",
- url: "http://localhost/user/delete", // atau ke bisa ganti disini pake variable
- data: form.serialize(),
- success: function(data) {
- swal({
- title: "Successfully deleted!",
- text: "",
- icon: "success",
- });
- },
- error: function(err) {
- swal({
- title: "Something went wrong!",
- text: "Is it something wrong with your face? I beg you to take a mirror please!",
- icon: "error",
- });
- }
- });
- } else {
- swal({
- title: "You're safe!",
- text: "Data is not deleted. Are you happy?",
- icon: "success",
- });
- }
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment