Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9154381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:25:10+00:00 2026-06-17T12:25:10+00:00

My question relates to this one asked a year ago: Is there a way

  • 0

My question relates to this one asked a year ago:

Is there a way to show the number of "ticks" or "steps" in a jquery ui slider?

The OP in that question wanted to know how to add visual steps based on where ticks in the slider are located. The solution was a manual one and would not work with a dynamic tick approach.

My question is what if I have multiple sliders loading on load, each one with different steps and at any point in time, the number of steps could change. Is there anything in the slider API that I may have overlooked that could be used as reference callbacks to the step div, letting it know where to position each step.

For example, if one of the steps is at “left: 28%”. Is that info stored anywhere in the slider after it initializes and can it be accessed to create dynamic step visuals below it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:25:11+00:00Added an answer on June 17, 2026 at 12:25 pm

    This code will create visual steps depending on your max value and step value. It will work on multiple sliders and the visual steps are created on the slider create event. If you change the stepvalue on an event or something, you can simply clear the labels div and rerun the create function.

    You will still need to style the divs depending on how you want it to look.

    Hope this helps!

    jsFiddle

    Html

    <div class="slider-holder">
      <div class="slider"></div>
      <div class="slider-labels"></div>
    </div>
    

    CSS

    .slider-holder {
      width:500px;
      height:50px;
      margin:auto;
    }
    .slider-labels {
       position:relative;
    }
    .slider-labels span {
      position:absolute;
      color:#000;
    }
    

    Javascript

    $( ".slider" ).slider({
      min: 0,
      max: 100,
      step: 10,
      create : function(event,ui) {
        var maxValue = $(this).slider("option","max");
        var stepValue = $(this).slider("option","step");
        var steps = maxValue/stepValue;
        for(i=0;i<=steps;i++) {
          var val = stepValue*i; 
          $(event.target).next().append('<span style="left:'+val+'%;">'+val+'</span>');
        }
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have question quite much related to this one I asked a while ago
This question is related to the one I asked here . I'm trying to
This question is related somewhat to the one i asked HERE . Now, i
James here. This question relates (sort of) to the one I posted a little
This question is related to this one: Best way to store product colors in
This question is related with one of my earlier questions.. Previous Post In there
This question is related to one I asked previously, see here . As a
This is another question related to a question I asked a few minutes ago.
My question relates to this question asked earlier. In situations where I am using
This question is similar to the one i asked here . But its related

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.