The question is straightforward: How do I get the POSITION of a slider-handle since it is contained inside a slider?
Can I use the getBoundingClient also?
Do you use this to call the slider-handle?
.slider::-webkit-slider-thumb
or
.slider::-moz-range-thumb
I want to do something like this:
var mySliderHandleCursor = document.getElementById('THE_ID_OF_MY_SLIDER_CURSOR');
mySliderHandleCursor.getXposition();
mySliderHandleCursor.getYposition();
I'm asking this because I want to place the highlighted image below the position of my slider-cursor, as illustrated:
So my plan is to:
1. Get X of slider-cursor assign it to marker-image
2. Get Y of slider-cursor and assign it to marker-image +20px