igrovik
Новичок
Приветствую всех мож кому пригодится, отдаю от души некогда пользовался на своем сайте данной приблудой. Пользуйтесь на здоровье . Настраивайте под свой вкус.
Код:
<!--Запомнить серию-->
<style type="text/css">
.search {
width: 25px; /* Ширина в пикселах */
}
.p
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt; /* Размер шрифта в пунктах */
}
.fd
{
width: 264px;
<!--height: 40px; /* Высота блока */-->
/*border: 2px solid #000; Параметры рамки */
background-color: RGB(249, 201, 16)100% 100% no-repeat; /* Добавляем фон */
background-size: cover; /* Масштабируем фон */
position: inherit;
top: 1388px; /* Расстояние от верхнего края */
left: 676px; /* Расстояние от левого края */
bottom: 0; right: 55;
}
</style>
<b></b> <br>
<b>Вы остановились:</b>
<div class= 'fd'><form action="#">
<a href="#" onclick="clearCookies(); return false;"><div class='p'>Очистить данные</div></a>
Сезон:<input type="text" id="input1" style="width: 25px">
Серия:<input type="text" id="input2" style="width: 25px">
Время:<input type="text" id="input3" style="width: 25px">
<input type="submit" value="Тык" style="width:40" onclick="saveCookies(); return false;">
</form></div>
<!--Конец запоминания-->
<!--Джава для запоминания серии-->
<script>
function saveCookies() {
createCookie('input1', document.getElementById('input1').value, 365);
createCookie('input2', document.getElementById('input2').value, 365);
createCookie('input3', document.getElementById('input3').value, 365);
}
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function clearCookies()
{
createCookie('input1',"",-1);
createCookie('input2',"",-1);
createCookie('input3',"",-1);
document.getElementById('input1').value = '';
document.getElementById('input2').value = '';
document.getElementById('input3').value = '';
}
function getValues() {
document.getElementById('input1').value = readCookie('input1');
document.getElementById('input2').value = readCookie('input2');
document.getElementById('input3').value = readCookie('input3');
}
window.onload = getValues();
</script>
<!--Конец джава для запоминания серии-->