Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question
Have you tried anything? Is there something specific you're stuck on? SO is not the place to ask people to walk through the whole implementation of a requirement, it's for resolving problems. – millimoose Jan 1 at 21:33
Upon reading the edit, you should probably also read the FAQ. Dumping random code snippets found on the internet is not a good use for self-answered questions. – millimoose Jan 1 at 21:37
Man I edited the code, it just couldnt do what I wanted it, but i managed it. Show some respect :( – Tasos Tzakris Papalyras DM Jan 1 at 21:38
1  
My point is: I believe your question, without the edit, fails on merit. (Insufficient research etc.) That is a criterion that decides whether it belongs on SO or not. That you did in fact research the answer yourself and included it (which should've been as an answer, not part of your question) does not change the fact it's not a good question in the first place. – millimoose Jan 1 at 21:43
:/ Ok i ll try to make correct questions in the future. Sorry about that.. – Tasos Tzakris Papalyras DM Jan 1 at 21:45
show 4 more comments

closed as too localized by millimoose, Juhana, Sheikh Heera, bensiu, Linger Jan 2 at 3:31

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

It doesn't look like you have tried much, but here is a good place to start:

http://jqueryui.com/dialog/

You will have to include jQuery UI but it makes it pretty easy to make dialog boxes

share|improve this answer
jQuery for such a simple task? OP should learn about basic JavaScript first. – Zeta Jan 1 at 21:35
Check the question both of you – Tasos Tzakris Papalyras DM Jan 1 at 21:36
ANd I am 14, I dont know much about javascript, sooo.... – Tasos Tzakris Papalyras DM Jan 1 at 21:36

You may try this

function myFunction()
{
    if(confirm("Are you sure?"))
    {
        window.location='URL';
    }
    else return false
}​

Example Here.

share|improve this answer
Check the q, i edited and puted an awnser over there – Tasos Tzakris Papalyras DM Jan 1 at 21:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.