> When I use the "Basis-Script" code, the slider turns into a multiple choice question.
That usually happens when there is an error in the code that stops other code on the page (the one that creates the slider) from running.
> The only other options in the manual are to change the format of the displayed value to take the form of time, percentages, Euros, and negative values.
I would apprechiate if you tried to understand what these few lines of code do. It will be worth the time. However, here's the reduced version that just does not display a % sign.
var formatter = function(value, reversed) {
if (value < 0) return "";
return String(Math.round(value - 1));
}
SoSciSliders.setFormat(formatter);