
Untitled
By: a guest on
Jun 15th, 2012 | syntax:
JavaScript | size: 0.69 KB | hits: 27 | expires: Never
<script>
$(document).ready(function() {
/* Instantiate the global sp object; include models & views */
var sp = getSpotifyApi(1);
var models = sp.require("sp://import/scripts/api/models");
/* The <div /> that will contain the popup */
var element = $('#share');
/* The Spotify URI of the content you want to share */
var content = 'spotify:track:2ijsITOdUkUeF8EW7OfYBr';
/* Display the popup */
models.application.showSharePopup(element[0], content);
});
</script>