| Recommend this page to a friend! |
| Classes of Mitchelle Pascual | > | MySQL DB Class and Data Manipulation Class | > | includes/js/confirm.js | > | Download | ||
|
|||||||||||||||||||||
// JavaScript Document
function confirmation()
{
var msg = "Are you sure?";
if(confirm(msg))
{
return true;
}
else
{
return false;
}
} // end function |