Created
August 25, 2016 19:05
-
-
Save Bijesse/64513555aaa56a04a295d21c33861143 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=64513555aaa56a04a295d21c33861143
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>this Example</title> | |
</head> | |
<body> | |
<button id = "tom">Tom</button> | |
<button>Erica</button> | |
<button>Joliz</button> | |
<div></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
$("button").click(function(){ | |
$("div").append('hello ' + this.id); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment