-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
29 lines (21 loc) · 1021 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Inicializar el contador de clikis
let clickCount = 0;
// Esperar a que el DOM esta completamente cargado
document.addEventListener("DOMContentLoaded", function() {
// busco el ID
const link = document.getElementById('specialLink');
// Añadir un evento de clic al enlace
link.addEventListener('click', function(event) {
// Evitar que el enlace redirija de inmediato
event.preventDefault();
// Incrementar el contador de clics
clickCount++;
if (clickCount === 3) {
// Redirigir después de 3 clics
window.location.href = "https://www.youtube.com/watch?v=uE-1RPDqJAY"; // Cambia la URL por la que necesites
} else {
// Mostrar en la consola cuántos clics ha hecho el usuario :3
console.log(`Has hecho ${clickCount} clic(s). Necesitas 3 clics para continuar.`);
}
});
});