Alicia Posted August 13, 2008 Share Posted August 13, 2008 Hi guys, I tried to use this code in html file and it is working fine but when i use the same code in php file (with get method/value after the file name . eg : file.php?id=1) the JS doesnt work anymore.. it still will direct to the next page eventhough the user click cancel. My code for ur reference : function confirmation() { var answer = confirm("Lets confirm!") if (answer==true) { alert("Proceed"); // code will be inserted to redirect user to next page } else { alert("I am not done"); } } </script> <input type="image" onclick="confirmation()" value="Lets confirm" src="images/myimage.gif" alt="<? echo $useme ?>" name="personal" /> Can somebody please let me know what I have done wrong and why the cancel button doesnt return back to the original page my php file? All I want is after the user click cancel, it will remove the alert box and display back to current page without directing the user to other page. Please assist. Thank you. Quote Link to comment Share on other sites More sharing options...
RichardRotterdam Posted August 13, 2008 Share Posted August 13, 2008 try looking at your source in your browser you should only see javascript and this will make tracking the error a lot easier. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.