myScroller.scoller("refresh", {width:5}); would be fantastic
Here’s what I’ve got. This works pretty good (a little off but screw it). The problem is the little slider ball thinks it has the entire original width so it slides off the bar.
$.each($(":jqmData(role=fieldcontain) > div[class~='ui-slider']"), function () {
var slider = $(this);
slider.css("width", (slider.width() - 16) + "px !important");
});
You can just select the slider widgets and set their widths without a loop:
I would place this code in a
pageinithandler like so: