Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** Mettre à jour les scrollbars Easy Scroll automatiquement toutes les secondes en gardant la largeur du bloc **/
- jQuery(document).ready(function($)
- {
- setInterval(function()
- {
- $('.content').each(function()
- {
- var w = $(this).width(); // stock the actual width
- $(this).trigger('resize').css({'width':w+'px'}); // update the scrollbar and then forces the original width we stocked
- });
- },1000);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement