I have a unique situation where I have 10 divs aligned in a row within one container located in the footer of a responsive website. The website is designed to be functional on smartphones as well.
My goal is to create a horizontal scrollview specifically for smartphones, with additional divs which overflow (divs 4, 5, 6, 7, 8, 9, and 10) placed outside the viewport. These overflow divs should slide into view when needed. Currently, using the CSS provided in this jsFiddle, the extra divs that don't fit in the row are displayed below the viewport rather than being aligned in the same row. How can I ensure all divs are in the same row?
In essence, I am aiming for only n squares to be visible within the viewport, while the remaining ones can be slid into view as necessary.
P.S. I am attempting to tackle this issue manually, but I'm curious if there are any jQuery scroll viewer plugins available (excluding jQuery Mobile).