Simple test of using bl.ocks.org
Created
June 14, 2015 22:00
-
-
Save jakebrinkmann/37897e00be4b08e7d488 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<body> | |
<img id="myImg" alt="Flower" src="klematis.jpg" width="150" height="113"> | |
<p>Click the button to display each attribute's name and value of the image above.</p> | |
<button onclick="myFunction()">Try it</button> | |
<p id="demo"></p> | |
<script> | |
function myFunction() { | |
var x = document.getElementById("myImg"); | |
var txt = ""; | |
var i; | |
for (i = 0; i < x.attributes.length; i++) { | |
txt = txt + x.attributes[i].name + " = " + x.attributes[i].value + "<br>"; | |
} | |
document.getElementById("demo").innerHTML = txt; | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment