Skip to content

Instantly share code, notes, and snippets.

@timdream
Created February 28, 2010 10:56
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 timdream/317531 to your computer and use it in GitHub Desktop.
Save timdream/317531 to your computer and use it in GitHub Desktop.
<!--
GFX API 懶惰測試頁 -
用 Firebug 看資料結構吧。
-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script>
var c;
$(function() {
$.getJSON(
'http://gfx.tw/api/0/user/tim?callback=?',
{},
function (data) {c = data; console.log(data)}
);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment