IP: 93.91.240.147:27312Ahojte, Potreboval by som vašu pomoc.... Mám jeden jQuery Countdown ale neviem ako tam nastaviť dátum myslím že napr. do 10.5.2013 00:00 a potom sa to dá na 0.
JS:
http://leteckaposta.cz/280614652INDEX:
Kód: Vybrat vše
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>RoyalGame.eu</title>
<link rel="stylesheet" href="css/style.css">
<style type="text/css">
</style>
<center>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 2013, 5-10, 00);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
});
</script>
</head>
<body>
<font color="gold"><h1>RoyalGame.eu</h1></font>
<div id="defaultCountdown"></div>
</center>
</body>
</html>