Jump to content

JS not working in php file


Alicia

Recommended Posts

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.

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/119435-js-not-working-in-php-file/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.