Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var text;
- function buttonClick(){
- document.getElementById("jsTest").innerHTML = "The button was clicked!!!";
- }
- function resetText(){
- document.getElementById("jsTest").innerHTML = "Waiting for input...";
- }
- function onOtherButtonClick(){
- alert("The other button was clicked.");
- }
- function typeText(){
- text = prompt("Rock, paper, or scissors?");
- if(text != null){
- document.getElementById("response").innerHTML = "You typed in: \"" + text + "\"";
- } else{
- document.getElementById("response").innerHTML = "You typed in no text.";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment