
Frohes neues euuch allen

MFG
Charbel. D
Code: Alles auswählen
<meta http-equiv="refresh" content="5; URL=http://meine Adresse/">
Code: Alles auswählen
<form name="dllink">
<input type="button" name="dlbutton" value="Download" onClick="location.href='___DOWNLOADLINK___'">
</form>
<script type="text/javascript">
<!--
var secs = 21; // Wartezeit in Sekunden
var wait = secs * 1000;
document.dllink.dlbutton.disabled=true;
for(i=1;i<=secs;i++)
{
window.setTimeout("update(" + i + ")", i * 1000);
}
window.setTimeout("timer()", wait);
function update(num)
{
if(num == (wait/1000))
{
document.dllink.dlbutton.value = "Download";
}
else
{
printnr = (wait/1000)-num;
document.dllink.dlbutton.value = "Download (" + printnr + ")";
}
}
function timer()
{
document.dllink.dlbutton.disabled=false;
}
//-->
</script>