Skip to content

Instantly share code, notes, and snippets.

@orlando
Created December 20, 2011 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orlando/1503541 to your computer and use it in GitHub Desktop.
Save orlando/1503541 to your computer and use it in GitHub Desktop.
jquery timeslider
$("li.month").click(function(e){
e.preventDefault();
var selected_month = $(this).closest('li').index();
$("#slider-range").slider("values",[Math.abs(moment([moment().year()]).diff(moment([moment().year()]).month(selected_month-1),'month')),Math.abs(moment([moment().year()]).diff(moment([moment().year()]).month(selected_month),'days'))]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment