Quote:
Originally Posted by ProSportsForums
It's a simple javascript.
It would be something like:
<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br><br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>
<script>
<!--
//change below target URL to your own
var targetURL="http://mysite.com"
//change the second to start counting down from
var countdownfrom=10
var currentsecond=document.redirect.redirect2.value=co untdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}
countredirect()
//-->
</script>
|
Many thanks for the above
my website is jandeane81.com and i would like it to show that my website as been seized by fbi law enforcement. can you help me put it correctly in the above code and where do i put this code
many thanks for your time
--------------- Added [DATE]1459517987[/DATE] at [TIME]1459517987[/TIME] ---------------
Ok i am having a blonde moment
I did this below and will highlight what a put in bold.I then put it in my header template and all it did was show a countdown.What am i doing wrong
<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br>
http://krebsonsecurity.com/wp-conten...5/lrseized.png<br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>
<script>
<!--
//change below target URL to your own
var targetURL="
http://jandeane81.com"
//change the second to start counting down from
var countdownfrom=10
var currentsecond=document.redirect.redirect2.value=co untdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}
countredirect()
//-->
</script>
Many thanks