Onbekend |
|
Als het aantal procent op 100 staat opent hij de pagina index-v1.php, maar hij opent dat in een frame, hoe kan ik zetten dat hij de pagina refresht en enkel de index-v1.php weergeeft?
<script>
getal=0;
url='index-v1.php';
function load()
{
if(getal==100)
{
document.location.href = url;
}
else {
getal+=5;
tabel.width=getal;
text.innerHTML=getal+'%';
setTimeout('load()','100');
}
}
setTimeout('load()','100');
</script>
Loading...
<div id=text></div>
<table cellpadding=0 cellspacing=0 width=102 style='border:1 solid black'>
<tr><td align=left>
<table cellpadding=0 cellspacing=0 bgcolor=#996600 height=11 id=tabel>
<tr><td></tr></td></table></tr></td></table></center>
\n <script language=\"javascript\">setTimeout('parent.window.location.reload()',5500)</script>\n </td></tr>\n";
<script> getal=0; url='index-v1.php'; function load() { if(getal==100) { document.location.href = url; } else { getal+=5; tabel.width=getal; text.innerHTML=getal+'%'; setTimeout('load()','100'); } } setTimeout('load()','100'); </script> Loading... <div id=text></div> <table cellpadding=0 cellspacing=0 width=102 style='border:1 solid black'> <tr><td align=left> <table cellpadding=0 cellspacing=0 bgcolor=#996600 height=11 id=tabel> <tr><td></tr></td></table></tr></td></table></center> \n <script language=\"javascript\">setTimeout('parent.window.location.reload()',5500)</script>\n </td></tr>\n";
|