Skip to content

Instantly share code, notes, and snippets.

@brooklynDev
Created February 15, 2012 20:36
Show Gist options
  • Save brooklynDev/1838833 to your computer and use it in GitHub Desktop.
Save brooklynDev/1838833 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(function () {
$("#button").click(function () {
var person = ngon.Person;
var div = $("#output");
div.html('');
div.append("FirstName: " + person.FirstName);
div.append(", LastName: " + person.LastName);
div.append(", Age: " + person.Age);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment