Skip to content

Instantly share code, notes, and snippets.

@tgk
Created December 6, 2011 11:31
Show Gist options
  • Save tgk/1437871 to your computer and use it in GitHub Desktop.
Save tgk/1437871 to your computer and use it in GitHub Desktop.
$("#slider-range").slider({
range: true,
min: 0,
max: 20,
values: [5, 11],
slide: function(_, ui) {
return console.log("" + ui.values[0] + " to " + ui.values[1]);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment