$(document).ready(function () { var width = $("#videosContent").children().eq(0).outerWidth() $("#leftSlip").click(function (e) { var left = $("#videosContent").scrollLeft() $("#videosContent").animate({'scrollLeft': left-width},100) }) $("#rightSlip").click(function (e) { var left = $("#videosContent").scrollLeft() $("#videosContent").animate({'scrollLeft': width+left},100) }) })