Skip to content

Instantly share code, notes, and snippets.

@jmarmolejos
Created June 23, 2015 14:05
Show Gist options
  • Save jmarmolejos/07547749e9c9b94150df to your computer and use it in GitHub Desktop.
Save jmarmolejos/07547749e9c9b94150df to your computer and use it in GitHub Desktop.
<!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