Reset Password
Enter Your
E-mail
and instructions will be sent to you!
Send Email
================================================ $(function(){ $(document).on('click','#delete',function(e){ e.preventDefault(); var link = $(this).attr("href"); Swal.fire({ title: 'Are you sure?', text: "Delete This Data?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { window.location.href = link Swal.fire( 'Deleted!', 'Your file has been deleted.', 'success' ) } }) }); });