Quantcast
Viewing all articles
Browse latest Browse all 15

How to force resize every 3 seconds javascript

Go to the text editor ( where you can input html content ) and input:

<script>setInterval(function(){
if(window.jQuery){
jQuery(window).trigger('resize');
}
},3000);</script>


Viewing all articles
Browse latest Browse all 15

Trending Articles