GSUser with JSONP

GSUser with JSONP

JavaScript

new Request.JSONP({
    url: 'http://www.gsuser.com/songWidget/Lightning%20Crashes/Live/',
    callbackKey: 'callback',
    data: {
        format: 'json'
    },
    onComplete: function(response){   
        
        // inject the response
        new Element('div', {
            html: '<h1>{SongName}</h1> <h2>{ArtistName} - {AlbumName}</h2> {widget}'.substitute(response)
        }).inject(document.body);
    }
}).send();