JS gevorderde |
|
iets vanne :
in je head:
<script type='text/javascript'>
window.onload = function() {
window.setTimeout("TimerTick()", 5000);
// sorry kon 't niet laten ;)
var a = document.getElementById("ButtonToShow");
a.onclick = function() { window.open('show_icons.php'); }
}
function TimerTick() {
var b = document.getElementById('ButtonToShow');
b.style.display = 'block';
return;
}
</script>
<script type='text/javascript'> window.onload = function() { window.setTimeout("TimerTick()", 5000); // sorry kon 't niet laten ;) var a = document.getElementById("ButtonToShow"); a.onclick = function() { window.open('show_icons.php'); } } function TimerTick() { var b = document.getElementById('ButtonToShow'); b.style.display = 'block'; return; } </script>
en in je css :
#ButtonToShow {
display : hidden;
width : 100px;
height : 40px;
}
#ButtonToShow { display : hidden; width : 100px; height : 40px; }
en in je php :
<button id="ButtonToShow" value="Iconen Bekijken">Iconen Weergeven</button>
<button id="ButtonToShow" value="Iconen Bekijken">Iconen Weergeven</button>
|