1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="robots" content="noindex, nofollow"> <meta name="googlebot" content="noindex, nofollow"> <script type="text/javascript" src="//code.jquery.com/jquery-1.9.1.js"></script> <link rel="stylesheet" type="text/css" href="/css/result-light.css"> <link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <script type="text/javascript" src="http://tristanedwards.me/u/SweetAlert/lib/sweet-alert.js"></script> <link rel="stylesheet" type="text/css" href="http://tristanedwards.me/u/SweetAlert/lib/sweet-alert.css"> <script type='text/javascript'>//<![CDATA[ $(window).load(function(){ $(document).ready(function () { $(document).on('click', '#mydelete', function() { swal({ title: "DELETE PAGE", text: "PAGE WILL BE GONE!", type: "warning", showCancelButton: true, confirmButtonClass: 'btn-danger', confirmButtonText: 'YES', cancelButtonText: "NO", closeOnConfirm: true, closeOnCancel: false }, function (isConfirm) { if (isConfirm) { delete_page(); } else { swal("Cancelled", "Page safe!", "error"); } }); }); }); });//]]> var delete_page = function(){ alert("Done"); }; </script> <style type="text/css"> .confirm { background-color: blue !important; } .cancel{ background-color: blue !important; } </style> <input type="button" id="mydelete" name="mybutton" value="mybutton"> </html> |
