Solved
Modifying Sliders
I am trying to add "%" to a slider so that when someone slides through, the user reads a number along with the "%" sign, for e.g. instead of "7", the user sees "7%" on top of the slider. Is there a way to implement this through JS? Thanks.
Best answer by Anonymous
Hello @R_I ,
Paste the below code in the js(OnReady) of the slider question
jQuery("#"+this.questionId+" div.track").mousedown(function (e1) {
jQuery(document).mouseup( function(e2) {
var s = jQuery(".sliderToolTipBox ").text().replace("%","");
jQuery(".sliderToolTipBox ").text(s+"%");
});
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
