Как проверить, авторизован клиент на сайте, или нет?
Нашел XMLHttpRequest.
Пробую так:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<script>
function process() // Вызывается при нажатии кнопки
{
var result; // Это для чего - то там...
var xhr = new XMLHttpRequest(); // Создать объект
xhr.open('GET', 'https://www.google.ru/search?q=1', true); // Конфигурация запроса
xhr.onreadystatechange = function() // Запрос в стадии чего - то?
{
if(xhr.readyState == 4) // Ммм, код ошибки какой - то...
{
if(xhr.status == 200) // Запрос - успех?
{
//result = JSON.parse(xhr.responseText); // Что - то распарсить и записать...
alert(xhr.responseText); // Вывести страницу?
}
}
}
xhr.send(null); // Отправить запрос
}
</script>
<br><br><br>
<table style="width:100%; height:100%;" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<button onclick="process()">Запрос</button>
</td>
</tr>
</table>
</body>
</html>
Ничего не работает...