Changing javascript confirm dialog box to bootstrap
- by Scape Goat
I already this something
Here is the original code:
<script type='text/javascript'>
function delete_user( id ){
var answer = confirm('Are you sure?');
//if user clicked ok
if ( answer ){
//redirect to url with action as delete and id to the record to be deleted
window.location = 'delete.php?id=' + id;
}
}
</script>
How do I remove the old javascript confirm dialog box and replace it with bootstrap?