Показать сообщение отдельно
  #2 (permalink)  
Старый 12.07.2018, 22:36
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

fenix_63,
<!DOCTYPE html>

<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">


  <script>
document.addEventListener('DOMContentLoaded', function() {
document.querySelector('.ref').addEventListener('click',
    function() {
var date = new Date(new Date().getTime() + 24 * 60 * 60 * 1000), // сутки
hostname = window.location.hostname;
if(hostname) document.cookie = "referer="+hostname+"; path=/; expires=" + date.toUTCString();
 });
document.querySelector('.info').innerHTML = document.cookie
console.log(document.cookie);

  });
  </script>
</head>

<body>
<div class="info"></div>
<a href="site2.ru" class="ref">Ссылка</a>
</body>
</html>
Ответить с цитированием