When I click on "delete post" on StackOverflow it brings up a window on the screen asking if I want to go ahead or if I want to cancel.
How can I do that in Javascript so that it will work in both a computer and on an IPad?
When I click on "delete post" on StackOverflow it brings up a window on the screen asking if I want to go ahead or if I want to cancel.
How can I do that in Javascript so that it will work in both a computer and on an IPad?
You can achieve it by using confirm
, use the code as below:
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
confirm("Press a button!");
}
</script>
The above example is very basic, if you some designed confirm box then please check craftpip's jquery-confirm Hope you like it.
You can use confirm
for this. It will return true
or false
depending on the user's action. Example:
var result = confirm("Please confirm this action!")
if(result)
//The user confirmed the action
else
//The user declined the action
As stated by others, use the confirm
method.
You can get the callback from confirm like this:
confirm("Are you sure you want to do this?", function(result) {
if(result)
doSomethingPositive();
else
doSomethingNegative();
});