Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>Como abrir un enlace con jQuery</title> </head> <body> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <h1 align="center" style="color:black; font-family: Monaco, 'Courier New', monospace; size:12px; text-transform:capitalize; text-decoration: none;">Como abrir un enlace con jQuery</h1> <button class="open-link" style="cursor:pointer;">Abrir enlace con jQuery</button> <script> $('.open-link').click(function(){ window.open('https://tutorialesenlinea.futbolgratis.org/'); return false; }); </script> </body> </html>