Skip to content

Instantly share code, notes, and snippets.

@ignatov
Created April 4, 2015 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignatov/07fed1826c6162504294 to your computer and use it in GitHub Desktop.
Save ignatov/07fed1826c6162504294 to your computer and use it in GitHub Desktop.
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
$(document).ready(function () {
$.ajax({
url: 'http://localhost:63342/api/about',
dataType: 'jsonp',
success: function (data) {
$('#version').html(data.productName + " " + data.baselineVersion);
}
});
})
</script>
</head>
<body>
<div id='version'></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment