Skip to content

Instantly share code, notes, and snippets.

@bradygaster-zz
Created July 26, 2012 22:47
Show Gist options
  • Save bradygaster-zz/3185033 to your computer and use it in GitHub Desktop.
Save bradygaster-zz/3185033 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div id="message"></div>
<script type="text/javascript" src="Scripts/jquery-1.6.2.js"></script>
<script type="text/javascript">
$(function () {
$.get('/hello', function (x) {
$('#message').html(x);
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment