Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="es">
- <head>
- <title>Agregar Eventos desde JS</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <script>
- function mostrarBienvenida()
- {
- alert('Bienvenid@');
- }
- function saludar(){
- alert('Hola');
- }
- // window.onload = mostrarBienvenida;
- // window.onload = saludar;
- window.addEventListener("load", mostrarBienvenida);
- window.removeEventListener("load", mostrarBienvenida);
- window.addEventListener("load", saludar);
- </script>
- </head>
- <body>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement