A voir également:
- [javascript] controle de l'affichage d'une pa
- Affichage double ecran - Guide
- Fan controle - Télécharger - Optimisation
- Windows 11 affichage classique - Guide
- Telecharger javascript - Télécharger - Langages
- Controle parental disney plus - Guide
1 réponse
Salut!
;-)
HackTrack
<html>
<head>
<script>
var limitDate = new Date();
limitDate.setDate(20);
limitDate.setMonth(2); // Attention! Janvier=0 et décembre = 11 !!!
limitDate.setFullYear(2007);
function checkValidity(){
var now = new Date().getTime();
if(now>limitDate.getTime()){
document.location.replace("https://www.commentcamarche.net/");
}
}
</script>
<body onload="checkValidity();">
</body>
</html>
;-)
HackTrack