Skip to content

Instantly share code, notes, and snippets.

@rmcnaughGitHub
Forked from jlengstorf/gist:2760340
Created March 8, 2016 21:18
Show Gist options
  • Save rmcnaughGitHub/f3ec52390acd19a6f6eb to your computer and use it in GitHub Desktop.
Save rmcnaughGitHub/f3ec52390acd19a6f6eb to your computer and use it in GitHub Desktop.

Revisions

  1. Jason Lengstorf created this gist May 21, 2012.
    9 changes: 9 additions & 0 deletions gistfile1.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    $.ajax(
    type:'GET',
    url:"http://example.com/users/feeds/",
    data:"format=json&id=123",
    success:function(feed) {
    document.write(feed);
    },
    dataType:'jsonp'
    );