Call a function when window is resized

Rich picture Rich · Mar 4, 2013 · Viewed 50.7k times · Source

How can I call for this(or any) JS function to be run again whenever the Browser window is resized?

<script type="text/javascript">
 function setEqualHeight(e) {
     var t = 0;
     e.each(function () {
         currentHeight = $(this).height();
         if (currentHeight > t) {
             t = currentHeight
         }
     });
     e.height(t)
 }
 $(document).ready(function () {
     setEqualHeight($(".border"))
 })
</script>

Answer

udidu picture udidu · Mar 4, 2013

You can use the window onresize event:

window.onresize = setEqualHeight;