Is it possible to change the color of the slider only on the left/right side of the marker? See figure below.

Is it possible to change the color of the slider only on the left/right side of the marker? See figure below.

Best answer by vgayraud
Hi,
Not extensively tested, but you can start with the following script and adjust.
Qualtrics.SurveyEngine.addOnReady(function () {
var track = this.getQuestionContainer().querySelector('.track');
var handle = this.getQuestionContainer().querySelector('.handle');
if (track && handle) {
function updateTrackColor() {
var trackWidth = track.offsetWidth;
var handleLeft = parseFloat(handle.style.left);
var percent = Math.ceil((handleLeft / trackWidth) * 100);
track.style.background =
'linear-gradient(to right, #ccc 0%, #ccc ' + percent +
'%, #2196F3 ' + percent + '%, #2196F3 100%)';
}
new MutationObserver(updateTrackColor)
.observe(handle, {
attributes: true,
attributeFilter: ['style']
});
updateTrackColor();
}
});
Already have an account? Login
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join. No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join. No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.