Skip to content

Instantly share code, notes, and snippets.

@csanz
Created June 3, 2012 07:05
Show Gist options
  • Save csanz/2862350 to your computer and use it in GitHub Desktop.
Save csanz/2862350 to your computer and use it in GitHub Desktop.
JSONP
callMe({name: 'chris'})
<html>
<script src="hey.js"></script>
<script>
function callMe(json){
obj = eval(json)
alert(obj.name)
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment