How do I use jQuery's $.get to collect the text shown on the page? The link I provided has a page with the text 'true'. How do I alert the text of the page? This is my code, thanks
$.get( "http://api.roblox.com/ownership/hasasset?assetId=52454955&userId=1", function( data ) {
var x = $( "body" ).text( data );
alert( x );
});