Tips and tricks
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>
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>