Показать сообщение отдельно
  #2 (permalink)  
Старый 10.06.2016, 11:14
Аспирант
Отправить личное сообщение для Alex_63 Посмотреть профиль Найти все сообщения от Alex_63
 
Регистрация: 22.08.2015
Сообщений: 71

eridan,
function setcookie(a,b,c) {if(c){var d = new Date();d.setTime(d.getTime()+c);}if(a && b) document.cookie = a+'='+ encodeURIComponent(b) +(c ? '; expires='+d.toUTCString() : '');else return false;}
function getcookie(a) {var b = new RegExp(a+'=([^;]){1,}');var c = b.exec(document.cookie);if(c) c = c[0].split('=');else return false;return c[1] ? decodeURIComponent(c[1]) : false;}

soundButton.click(function() {
  if(!sound) sound = 1; 
  if (sound == 1) {
	setcookie("sound","1",30*3600*24*30*1000);
	document.getElementById("sound").style.backgroundPosition = "0px";
	audioLink.play();
  } else if (sound == 0) {
	setcookie("sound","0",30*3600*24*30*1000)
	document.getElementById("sound").style.backgroundPosition = "-40px";
  }
});

$(function () {
    if (getcookie("sound") == "1") audioLink.play()
});
Ответить с цитированием