Cross Domain AJAX

HTML

<script src="https://github.com/jamespadolsey/jQuery-Plugins/raw/master/cross-domain-ajax/jquery.xdomainajax.js"></script>
<div id="container"></div>

JavaScript

$('#container').load('http://google.com');

$.ajax({
  url: 'http://www.bbc.com/turkce/index.xml',
  type: 'GET',
  success: function(res) {
    var headline = $(res.responseText).find('a.tsh').text();
    alert(headline);
  }
});