JavaScript Buttons Programmer
Usage: Button 1 calls the function button1(), and Button 2 calls the function button2(). To change the behavior of the buttons you have to redefine these functions by editing this file. For example:
Code Examples:
// Make button 1 give an alert
function button1(){
alert("Button 1 Pressed!");
}
// Make button 2 change the background to red
function button2(){
document.bgColor="red";
}