Показать сообщение отдельно
  #16 (permalink)  
Старый 14.09.2011, 15:19
Интересующийся
Отправить личное сообщение для Vendetta-V Посмотреть профиль Найти все сообщения от Vendetta-V
 
Регистрация: 14.09.2011
Сообщений: 11

function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
  {
  document.getElementById('intro').style.visibility = "hidden";
  document.getElementById('wraper').style.visibility = "visible";
  setCookie("username",username,365);
  }
else 
  {
  document.getElementById('intro').style.visibility = "hidden";
  document.getElementById('wraper').style.visibility = "visible";
    if (username!=null && username!="")
    {
    setCookie("username",username,365);
    }
  }
}
</script>
<body <?php body_class(); ?> onload="checkCookie()">
<?php if(is_front_page()) { ?>
<div id="intro">
	<img src="wp-content/themes/theme/images/intro_play_btn.jpg" onClick="setCookie("username",username,365)">
</div>
<?php }  ?>



Последний фрагмент так сделла
но вот результат - http://ct-logistics.net/
Ответить с цитированием