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

???

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.