Skip to content

Instantly share code, notes, and snippets.

@joliz
Created October 10, 2016 15:26
Show Gist options
  • Save joliz/65b953b8b45c8a828c001835d4eab1c0 to your computer and use it in GitHub Desktop.
Save joliz/65b953b8b45c8a828c001835d4eab1c0 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=65b953b8b45c8a828c001835d4eab1c0
<!DOCTYPE html>
<html>
<head>
<title>Why you mad?</title>
</head>
<body>
<div class="section">
<h1>What is your name?</h1>
<input id="name">
<button id="submit-name">Say Hello</button>
<p id="greeting">Hi </p>
</div>
</body>
</html>
$("#submit-name").click(function() {
$("#greeting").append($("#name").val());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment