Skip to content

Instantly share code, notes, and snippets.

@alexpelan
Created March 20, 2017 03:31
Show Gist options
  • Select an option

  • Save alexpelan/f7bac8abadd6f5330dbc3a06cd1c504a to your computer and use it in GitHub Desktop.

Select an option

Save alexpelan/f7bac8abadd6f5330dbc3a06cd1c504a to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f7bac8abadd6f5330dbc3a06cd1c504a
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>If the number is greater than 0 and less than 100, append "That's a small number."</p>
<p>If the number is greater than or equal to 100 and less than 1000, append "That's a medium number"</p>
<p>If the number is grreater than 1000, append "That's a large number."</p>
<input>
<button>Click!</button>
</body>
</html>
$("button").click(function() {
var number = parseInt($("input").val());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment