Skip to content

Instantly share code, notes, and snippets.

@joseph45666
Created May 4, 2017 13:49
Show Gist options
  • Save joseph45666/fa161b5a3e38904a3707222a2b4f7777 to your computer and use it in GitHub Desktop.
Save joseph45666/fa161b5a3e38904a3707222a2b4f7777 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=fa161b5a3e38904a3707222a2b4f7777
<!DOCTYPE html>
<html>
<head>
<title>For Loop do now</title>
</head>
<body>
<button>click here</button>
</body>
</html>
{"enabledLibraries":["jquery"]}
//button click handler
$("button").click(function(){
//for loop declaration
for(var count = 4; count < 16; count = count + 1){
//prints hello to the page body
$("body").append("<p>" + count + "</p>");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment