i'm trying to delete my products through sweetalert,but it shows the error that swal is not defined,tbh i don't have much idea about sweetalert.please guide me about it.
$(".deleteRecord").click(function(){
//alert("test");
var id= $(this).attr('rel');
//alert(id);
var deletefunction= $(this).attr('rel1');
//alert(deletefunction);
Swal.fire({
title: "Are you sure?",
text: "You will not be able to recover this record again!",
type:"warning",
showCancelButton: true,
confirmButtonClass: "btn-danger",
confirmButtonText: "Yes, delete it!"
},
function(){
window.location.href="/admin/"+deleteFunction+"/"+id;
});