Jump to content

[SOLVED] How to get Users confirmation before deleta any item?


phpRoshan

Recommended Posts

Hello there,

 

I would like to know how to get a users confirmation (YES or NO)using JS in a web page before the selected item being sent to the server to delete.

 

When the user clicked on YES button then that product details should be deleted from the table.

 

Im using php but knows js very very litle.

Can anybody helpe me?

 

Thanks

???

Found Something For You

<script LANGUAGE="JavaScript">
<!--
// Nannette Thacker http://www.shiningstar.net
function confirmSubmit() 
{
var agree=confirm("Are you sure you wish to continue?");
if (agree)
return true ;
else
return false ;
}
// -->
</script>


<form method="POST" 
action="/articles/articles/javascript/confirmsubmit.asp?shoeid=shoes&ID=AW" 
onsubmit="return confirmSubmit()" id="submitform" name="submitform">

Shoes	
<input type="Submit" value="Delete" id="Delete" name="Delete">
</form>

 

From: http://www.shiningstar.net/articles/articles/javascript/confirmsubmit.asp?ID=AW

 

 

 

 

 

Thnx,

Tarun

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.