Created
October 29, 2017 19:48
-
-
Save greeneggsandmushrooms/fd50f168b65c49bafadb16703db5516e 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> | |
<script id="jsbin-javascript"> | |
var variableNumber = 2; | |
var variableName = "Naniel"; | |
function changeTheText(){ | |
//change the paragraph text | |
document.getElementById("paragraphText").innerHTML=variableName; | |
} | |
</script> | |
<script id="jsbin-source-css" type="text/css">p{ | |
color:red; | |
} | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var variableNumber = 2; | |
var variableName = "Naniel"; | |
function changeTheText(){ | |
//change the paragraph text | |
document.getElementById("paragraphText").innerHTML=variableName; | |
} | |
</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 variableNumber = 2; | |
var variableName = "Naniel"; | |
function changeTheText(){ | |
//change the paragraph text | |
document.getElementById("paragraphText").innerHTML=variableName; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment