Так:
$.ajax(
{
url: 'http://wotbonuscode.tk/getcode.php',
type: 'GET',
dataType: 'html',
success: function(res)
{
alert(res.responseText);
}
});
Или так:
$.get( "http://wotbonuscode.tk/getcode.php", function( data ) {
alert( "data );
});
Запрос отправляется, а ответ не выводит.