SO I want when the user clicks a button, a box pop ups with the phrase are you sure? And if the user presses cancel, the box closes, but if the user preses OK then he will be redirected to a link. Can somebody help me implement this?
Oh i just found out. Here's the code:
Weeheee I foun how :D So this is the code:
<html>
<body>
<button onclick="myFunction()">Log Out</button>
<p id="demo"></p>
<script>
function myFunction()
{
var x;
var r=confirm("Are you sure?");
if (r==true)
{
x=window.location.href='URL';
}
else
{
x="";
}
void(0)
}
</script>
</body>
</html>
I hope somebody will be helped with this :)