listening for window resize using only document.ready

43 Views Asked by At

I am trying to create a responsive jquery slider plugin and need help calling the function.

I have noticed other slider plugins work on window resize even though they are only called as follows

$(document).ready(function () {
    $(".element").customFunction();
});

Is it possible withing the plugin after it is loaded initially to consistently check for window resizing even though the plugin is only loaded once on document.ready

Hopefully that makes sense , any help would be hugely appreciated.

Thanks

David

1

There are 1 best solutions below

0
On

Attach a resize listener to the window inside your plugin.

....
$(window).resize(function(){
   //your logic
});
....