test SOP

HTML

<pre></pre>

JavaScript

var test = $.ajax({
    url: 'https://api.twitter.com/1.1/statuses/show.json?id=407482849038565376',
    dataType: 'text',
    mimeType: 'text/plain',
    cache: false,
    error: function(f){
    $('pre').html(f);
    },
    success:function(f){
    $('pre').html(f);
    }
});