jquery - Scroll left and right horizontal div -


i'm using jquery.mousewheel.js scroll div , i'm using code:

#scrollablediv {     //position: relative;     width: auto;     height: 550px;     margin-top: 20px;     padding: 5px;     background-image: url(<?= base_url(); ?>/uploads/rcrayon_background-blue_preview.png);     overflow-x: hidden;     overflow-y: hidden;     white-space: nowrap; }  #scrollablediv img {     padding: 5px; } 

how can add left , right buttons scroll inside div?


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -