Created
October 29, 2017 21:03
-
-
Save greeneggsandmushrooms/9df1fa86b486e964d01b9eeebc06e82a to your computer and use it in GitHub Desktop.
35 Bin // source http://jsbin.com/degivot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>35 Bin</title> | |
<style id="jsbin-css"> | |
p{ | |
color:red; | |
} | |
</style> | |
</head> | |
<body> | |
<p id="paragraphText">This is awesome </p> | |
<button onclick="changeTheText()">Change the text</button> | |
<input type="text" id="changeUserText"> | |
<script id="jsbin-javascript"> | |
var coolNumber = 3; | |
function changeTheText(){ | |
if (coolNumber == 1){ | |
var changeTextVariable = document.getElementById("changeUserText").value; | |
document.getElementById("paragraphText").innerHTML = changeTextVariable; | |
} | |
else if(coolNumber == 2){ | |
alert("pop"); | |
} | |
else{ | |
var changeTextVariable1 = "Else statement fired"; | |
document.getElementById("paragraphText").innerHTML = changeTextVariable1; | |
} | |
} | |
</script> | |
<script id="jsbin-source-css" type="text/css">p{ | |
color:red; | |
} | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var coolNumber = 3; | |
function changeTheText(){ | |
if (coolNumber == 1){ | |
var changeTextVariable = document.getElementById("changeUserText").value; | |
document.getElementById("paragraphText").innerHTML = changeTextVariable; | |
} | |
else if(coolNumber == 2){ | |
alert("pop"); | |
} | |
else{ | |
var changeTextVariable1 = "Else statement fired"; | |
document.getElementById("paragraphText").innerHTML = changeTextVariable1; | |
} | |
}</script></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p{ | |
color:red; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var coolNumber = 3; | |
function changeTheText(){ | |
if (coolNumber == 1){ | |
var changeTextVariable = document.getElementById("changeUserText").value; | |
document.getElementById("paragraphText").innerHTML = changeTextVariable; | |
} | |
else if(coolNumber == 2){ | |
alert("pop"); | |
} | |
else{ | |
var changeTextVariable1 = "Else statement fired"; | |
document.getElementById("paragraphText").innerHTML = changeTextVariable1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment