Skip to content

Instantly share code, notes, and snippets.

@daha
Created June 7, 2012 18:38
Show Gist options
  • Save daha/2890670 to your computer and use it in GitHub Desktop.
Save daha/2890670 to your computer and use it in GitHub Desktop.
thecrapmen
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
type="text/javascript"></script>
<script>
$(document).ready(function () {
'use strict';
function success(data) {
$('body').append(JSON.stringify(data));
}
$.ajax({url: 'http:///thecrapmen.appspot.com/json',
dataType: 'jsonp',
jsonpCallback: 'crapman',
success: success
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment