Skip to content

Instantly share code, notes, and snippets.

@cp
Created November 24, 2013 01:36
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 cp/7622282 to your computer and use it in GitHub Desktop.
Save cp/7622282 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>ReadIt</title>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body>
<script>
$.ajax({
url: "http://digits-qrs.herokuapp.com/questions/icebreaker",
dataType: "jsonp",
success: function(response) {
console.log(response);
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment