Skip to content

Instantly share code, notes, and snippets.

@j100002ben
Created July 28, 2013 14:40
Show Gist options
  • Save j100002ben/6098818 to your computer and use it in GitHub Desktop.
Save j100002ben/6098818 to your computer and use it in GitHub Desktop.
<html>
<head>
</head>
<body>
<script>
var str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
for(var i = 0 ; i<str.length; i++){
for(var j = 0; j < str.length; j++) {
document.write('<img src="http://i.imgur.com/qZqar'+str[i]+str[j]+'.jpg" height="50" width="50">');
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment