Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

119
Views
¿Cómo puede llamar a una función cuando se muestra una página y cuando se cambia el tamaño de la ventana del navegador?

Quiero llamar a una función cada vez que se cambia el tamaño de la ventana de una página y cuando la página se representa por primera vez. Para hacer esto, actualmente estoy usando el siguiente código:

 window.addEventListener('resize', function(event){ // Here will be my function });

Esto llama a la función cada vez que se cambia el tamaño de la ventana, pero ¿se llamará a la función cuando la página se muestre por primera vez? Si no, ¿cómo se puede hacer esto?

EDITAR:.

He actualizado mi código para que se vea como este fragmento:

 window.onload = (event) => { callName() window.addEventListener('resize', function(event){ callName() }); }; function callName(){ console.log('Hi Neo!') }

esto funcionara?

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

function callName(){ // Your functionality here... console.log('Hi Neo!') } window.onload = () => { callName() window.addEventListener('resize', callName); }

Escribe aquí: https://codepen.io/freedruk/pen/MWobaao

about 4 years ago · Juan Pablo Isaza Report

0

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript Window Resize Event</title> </head> <body> <div id="result"></div> <script> // Defining event listener function function displayWindowSize(){ // Get width and height of the window excluding scrollbars var w = document.documentElement.clientWidth; var h = document.documentElement.clientHeight; // Display result inside a div element document.getElementById("result").innerHTML = "Width: " + w + ", " + "Height: " + h; } // Attaching the event listener function to window's resize event window.addEventListener("resize", displayWindowSize); // Calling the function for the first time displayWindowSize(); </script> <p><strong>Note:</strong> Please resize the browser window to see how it works.</p> </body> </html>

Puede usar esto como ejemplo para obtener el resultado deseado.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!