Created
December 7, 2016 18:50
-
-
Save Bijesse/c1a57d5e64df2a8326e04c43d56ab1f2 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=c1a57d5e64df2a8326e04c43d56ab1f2
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>Loop list</title> | |
</head> | |
<body> | |
<ul id = "numList"> | |
</ul> | |
</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
{"enabledLibraries":["jquery"]} |
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
for(var i = 1; i<101; i++){ | |
$("#numList").append("<li>"+i+"</li>"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment