SQL PHP HTML ASP JavaScript articles and free scripts to download
 

JavaScript Confirm delete window

Many time while deleting a record we give one warning message or a simple window message asking the user to confirm once again the deleting process. Here the user can change his mind and can cancel the operation or confirm his action by clicking the submit button.
We will be using one javascript function to know the user inputs so it is better to check whether javascript is enabled or kept in disabled condition. This confirmation system will not work if JavaScript is disabled by the user browser. So read on how to detect javascript enable or disable condition of the user click here

The deleting process requires server side scripting language like PHP, ASP, Perl etc. We will not discuss those here and will concentrate on JavaScript part. Here is the function which takes care of this. It takes two inputs, one is the title or the message and the other is the id of the record usually used in scripts to identify and delete the record. The confirm window will return with true or false condition. It true then the delete action will be done by the scripting angle. Here is the funciton.

<script LANGUAGE="JavaScript">
<!--
function confirmSubmit(ttt,id) {
var msg;
msg= "Are you sure you want to delete the data ? " + ttt + " - ID= "+id;
var agree=confirm(msg);
if (agree)
return true ;
else
return false ;
}
// -->
</script>

Here is the PHP code where records are displayed with a delete link. User can delete any record by clicking the delete link. Here some PHP code is shown as an example. Same way ASP or other script code can be used.

<a onclick=\"return confirmSubmit('$noticia[title]','$noticia[id]')\"
href='display_k.php?id=
$noticia[id]&todo=delete_k&status=$noticia[status]&by_query=$by_query'>Delete</a>




Further readings
window.onload: for functions to execute as soon as page loads
Displaying alert window with message
prompt window for user input
Confirm window for user choice
Opening a child window
Closing child window on click of a button
Refreshing parent window from child window
Passing of data from child window to parent window
Showing a conformation window to user before deleting
Displaying JavaScript pop up window
Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked


Join Our Email List
Email:  
For Email Newsletters you can trust