jquery.ui.spinner
jquery.ui.spinner copied to clipboard
positioning with dynamic content.
Using Firefox (possibly other browsers), if you dynamically add content to your form after initializing the spinners, their positions will be off.
temporary fix after adding dynamic content: $(".spinner").spinner("destroy"); $(".spinner").spinner({min: -99999, max:99999});
I feel like this should be handled automatically.
Thanks for pointing that out! This is actually what prevents me from using this plugin... All my form is created dynamically so it is quite inconvenient. FYI, the original version using a small css file instead of jquery position doesn't have this issue.