Nieuw lid |
|
Dankjewel!
Ik heb nu aangepast zodat hij ook die melding geeft na 4 keer, en dan moet hij dus groter of gelijk aan 5 zijn, als je 4 naamt, zegt hij het al bij de 4de klik..
<script>
var aantalClicks = 0;
function toon(inhoud){
aantalClicks += 1;
if(aantalClicks >= 5) {
window.alert("U hebt al 4 keer geklikt.");
} else {
document.getElementById(inhoud).style.display = 'block'; }
}
function verberg(inhoud){
document.getElementById(inhoud).style.display = 'none';
}
</script>
<script> var aantalClicks = 0; function toon(inhoud){ aantalClicks += 1; if(aantalClicks >= 5) { window.alert("U hebt al 4 keer geklikt."); } else { document.getElementById(inhoud).style.display = 'block'; } } function verberg(inhoud){ document.getElementById(inhoud).style.display = 'none'; } </script>
|