is it possible to call a page of another website from an ajax call ? my guess is that is possible since connection is not denied , but i can't figure out how to make my ajax call works , I am calling a list of TV Channels of a website , but I am getting no results , would you please see if my script contains any errors
function showValues(){
var myUrl="http://www.nilesat.com.eg/en/Home/ChannelList";
var all = 1;
$.ajax({
    url: myUrl+"&callback=?",
    data: "channelType="+all,
    type: 'POST',
    success: function(data) {
        $('#showdata').html(data);
    },
    error: function(e) {
        alert('Error: '+data);
    }  
});
} 
  showValues();
html div for results
<div id="showdata" name ="showdata">
</div>
 
    