Skip to content

Instantly share code, notes, and snippets.

@gryzzly
Created November 28, 2012 09:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gryzzly/4160205 to your computer and use it in GitHub Desktop.
Save gryzzly/4160205 to your computer and use it in GitHub Desktop.
// request default HTML5 widget's code
$.getJSON(
'http://soundcloud.com/oembed' +
'?format=json' +
'&url=http://soundcloud.com/forss/flickermood'
).done(function (embedData) {
console.log(embedData.html);
});
// request Flash widget code
$.getJSON(
'http://soundcloud.com/oembed' +
'?format=json' +
'&url=http://soundcloud.com/forss/flickermood' +
// notice this parameter
'&iframe=false'
).done(function (embedData) {
console.log(embedData.html);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment