Created
June 23, 2015 14:05
-
-
Save jmarmolejos/07547749e9c9b94150df to your computer and use it in GitHub Desktop.
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> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div id="currentPerson" > | |
<input type="text" data-bind="value: firstName" /> | |
<input type="text" id="age" data-bind="value: age" /> | |
</div> | |
<br /> | |
<div> | |
<button data-bind="click: clickHandler">Click all the things!</button> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment