I have a problem with this line of 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 to apply the bootbox.js here. i hate the old javascript dialog box. how can i change this?
i already did this line :
<script src="bootstrap.min.js"></script>
still not working.