daphneScript
The Javascript Library For Building
 
Rich Text Editor AJAX Server Calls Custom Dialog Boxes Easy File Uploads Simplified Functions
Example AJAX Call:
var example = dAJAX("file.php", "username=test&id=1234", "GET", function(response){
	dAlert(response);
})
Example Rich Text Editor:
var example = new dEditor("divID", 800, 170, { buttons:"all", theme:"dark" })
 
Welcome to Daphne Script!
Example Confirmation Box:
dConfirm("Are you sure you want to do this?", "Please Confirm", "Yes", "No", function(){
	//Confirmed
	dAlert("Confirmed!")
}, function(){
	//Canceled
})
Example Loading Screen:
dLoading(); //Show loading screen
dLoadingClose(); //Close loading screen