<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Prueba</title> </head> <body> <a href="https://www.google.com.ar" id="enlace">google</a> <script src="funciones.js"></script> </body> </html>
document.getElementById('enlace').addEventListener('click', () => { alert('Gracias por su visita') })