Skip to content

Instantly share code, notes, and snippets.

@willkriski
Created December 1, 2011 11:50
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 willkriski/1416156 to your computer and use it in GitHub Desktop.
Save willkriski/1416156 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<script type='text/javascript' src='jquery-1.7.1.min.js'></script>
<script type="text/javascript">
$(document).ready(function(){
$.getJSON("http://willkriski.com/?json=1&count=1",function(data) {
$('body').append('<a href="'+data.posts[0].url+'"><div id="homeblog">'+data.posts[0].title+'</div></a>');
});
});
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment