-
-
Save clintonhalpin/8d21350076ad30ddc8ba to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/luledu
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> | |
<script src="https://code.jquery.com/jquery-2.1.4.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
var impressionism = [ | |
[ | |
"Name", | |
"Description", | |
"2001", | |
"https://upload.wikimedia.org/wikipedia/commons/c/cd/Paul_Gauguin_049.jpg" | |
], | |
[ | |
"Name", | |
"Description", | |
"2001", | |
"https://upload.wikimedia.org/wikipedia/commons/c/cd/Paul_Gauguin_049.jpg" | |
] | |
]; | |
$('body').append('<img src=' + impressionism[0][4] + '/>'); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var impressionism = [ | |
[ | |
"Name", | |
"Description", | |
"2001", | |
"https://upload.wikimedia.org/wikipedia/commons/c/cd/Paul_Gauguin_049.jpg" | |
], | |
[ | |
"Name", | |
"Description", | |
"2001", | |
"https://upload.wikimedia.org/wikipedia/commons/c/cd/Paul_Gauguin_049.jpg" | |
] | |
]; | |
$('body').append('<img src=' + impressionism[0][4] + '/>');</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
var impressionism = [ | |
[ | |
"Name", | |
"Description", | |
"2001", | |
"https://upload.wikimedia.org/wikipedia/commons/c/cd/Paul_Gauguin_049.jpg" | |
], | |
[ | |
"Name", | |
"Description", | |
"2001", | |
"https://upload.wikimedia.org/wikipedia/commons/c/cd/Paul_Gauguin_049.jpg" | |
] | |
]; | |
$('body').append('<img src=' + impressionism[0][4] + '/>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment