Get value of slider without post
I have several dynamically-generated sliders on a page, each one with a default value of "15". The a user clicks the "Submit" button, I'd like to capture the values of the sliders and save them in localstorage.
The problem I'm having: regardless of what the slider is set to, I can only seem capture the default value, not the actual value.
In the past, I could use a form/POST to get the actual value, but using forms doesn't seem to be possible here.
Is there a way to capture the values of these dynamically-generated sliders?
Thanks!