solvable
Sorry, I lagged a bit and was looking for a jQuery way around this problem, but since then I realized that I could only adjust the original input field width to achieve the desired effect, as shown below.
@media screen and (max-width: 1000px) and (min-width: 480px) {
#myspinner{
width: 30px;
}
}
or if you prefer to use jQuery
$("#myspinner").width(30);
Once this is called, the jQuery UI widget automatically resizes around the input window
Jimbo source
share