Created
August 21, 2012 05:33
-
-
Save anonymous/3412181 to your computer and use it in GitHub Desktop.
created by livecoding - http://livecoding.io
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
<h1>Hello. I am a title.</h1> | |
<ul> | |
</ul> |
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
// create list of fruit | |
var fruits = [ | |
'banana', | |
'orange', | |
'red', | |
'blueberry' | |
]; | |
// add fruits to ul | |
for (var i = 0; i < fruits.length; i++) { | |
var li = $('<li></li>'); | |
li.text(fruits[i]); | |
$('ul').append(li); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment