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

114
Views
How can you call a function when a page renders and when the browser window is resized?

I want to call a function whenever a page's window is resized and when the page is first rendered. To do this, I am currently using the code below:

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

This calls the function every time the window is resized, but will the function be called when the page first renders? If no, how can this be done?

EDIT:.

I've updated my code so that it looks like this snippet:

window.onload = (event) => {
    callName()
    window.addEventListener('resize', function(event){
    callName()
  });
};

function callName(){
    console.log('Hi Neo!')
}

Will this work?

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);
}

Pen here: 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>

You can use this as a example to get your desired result.

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!