//"warning" "error" "success" "info" function swalfun(title, text, type, confirmButtonText='حسنا') { swal({ title, text, type, confirmButtonText }) } function swalthen(title, text, type, href) { swal({ title, text, type, showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'نعم', cancelButtonText: 'لا' }).then((result) => { if (result.value) { document.location.href = href; } }) }