Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script>
var blnResponse = confirm("Are you sure you want to delete?");
alert(blnResponse);
</script>
<script>
funtion confirmDelete() {
return confirm("Are you sure?");
}
</script>
<a href="mypage.html" onclick="return confirmDelete();">delete this</a>
fun[red]c[/red]tion confirmDelete()
{
if (confirm("Are you sure you want to delete?"))
{
alert("true - OK button was pressed.");
}
[red]else[/red]
{
alert("false - NO button was pressed.");
}
}