jQuery UI Spinner + Custom Theme - Buttons Under Input -
i trying apply theme-roller theme page jquery-ui spinners. once theme applied buttons spinner hidden under input.
here entire page:
<!doctype html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <link rel="stylesheet" href="jquery-ui-1.12.1.custom/jquery-ui.theme.min.css"> <script src="jquery-ui-1.12.1.custom/jquery-ui.min.js"></script> <script> $(function () { $(".spinner").spinner().width(120); }); </script> </head> <body> <input id="spin" class="spinner" type="text"> </body> </html>
(apologies not using jfiddle. have download theme see problem.) didn't change theme in way. there example of spinner working theme here. can download theme page.
i have found few cases of people complaining same problem no solution. tried different versions of jquery (3, 2 & 1). can remove .width(120) , type="text" element. example jquery provides doesn't use those.
any appreciated!
Comments
Post a Comment