Created
October 10, 2016 15:26
-
-
Save joliz/65b953b8b45c8a828c001835d4eab1c0 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=65b953b8b45c8a828c001835d4eab1c0
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>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> |
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
$("#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