html - Value jumps between textboxes on refresh -
i have page 6 textboxes, if enter values in text boxes , refresh page - values jump next text box (actually 2nd next text box).
so if have entered values following
[1] [2] [3] [4] [5] [6]
after refresh becomes:
[0] [0] [1] [2] [3] [4]
on next refresh values shifted 2 text boxes again.
text boxes created with:
<input type='text' id='foo' class='bar' value='0'/>
i think important use flexbox jquery plugin replaces given element two new input elements. removing flexbox solve issue.
you can try out here enter values in "stat weights" row @ bottom of big table, after hitting f5 value jump have described.
browser: firefox
questions: 1) how fix this? 2) normal behavior browser try put entered value after refresh? or have rogue code somewhere doing that?
untested: give inputs unique name values.
Comments
Post a Comment