PHP Classes

File: includes/js/confirm.js

Recommend this page to a friend!
  Classes of Mitchelle Pascual   MySQL DB Class and Data Manipulation Class   ???   Download  
File: includes/js/???
Role: Auxiliary data
Content type: text/plain
Description: Prompt confirmation
Class: MySQL DB Class and Data Manipulation Class
MySQL wrapper with data manipulation functions
Author: By
Last change:
Date: 18 years ago
Size: 177 bytes
 

 

Contents

Class file image Download
// JavaScript Document function confirmation() { var msg = "Are you sure?"; if(confirm(msg)) { return true; } else { return false; } } // end function