Check whether channel is online or not via js [SOLUTION FOUND]

You need to make the request using jsonp, example:

$.ajax({ 
     url:'https://api.twitch.tv/kraken/streams/Jonathan_x64',
     dataType:'jsonp',
     success:function(channel) { 
           //logic here
      }
 });