Hi
In a previous post, I asked how to disable the slider on a page and make it read only.
I was given this code
JS for Page Show Event
$(".ui-slider").addClass("ui-disabled");
CSS
.ui-slider.ui-disabled {
opacity: 1;
cursor: default;
pointer-events: none;
}
It works great in that app.
Now I have a new app and using same code. it does not work?????????