Help with .animate()
Help with .animate()
What I'm trying to accomplish is scrolling left 183px when clicking and everything looks right but it doesn't seem to be working. Here is what I've got-
- $('ol.days li.previous a').click(function() {
$('#calendarContainer').animate({ left:'-=183px' }, 1500)
});