I'm trying to get the data from the following(HTTP GET):
http://data.titantvguide.titantv.com/service.asmx?op=GetSchedules
This is my code:
$(document).ready(function() {
    $.ajax({
        url: 'http://data.titantvguide.titantv.com/service.asmx/GetSchedules?registrationKey=xxxxxxxxxx',
        dataType: 'xml',
        success: function(data) {
            console.log('testing');
        }
    });
});
Am I missing something? I don't see the console.log text.
