Guest User

Untitled

a guest
Jun 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var el, location;
  2. $("#slider").change(function() {
  3. $("#slider > span").html(100);
  4. el = $(this);
  5. el.next("#output").text(el.val());
  6. location = el.val();
  7. console.log(location);
  8. if (location > 9 && location < 100) {
  9. $("#output").css("left", "6px");
  10. }
  11. }).trigger("change");
Add Comment
Please, Sign In to add comment