Created
November 28, 2012 09:52
-
-
Save gryzzly/4160205 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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