So I'm attempting to throw together a character sheet, but I'm having some trouble. For some reason, if I try to fill in anything in any of the inputs in my repeating section, they automatically get cleared as soon as I click away or try to make a new repeating section. <fieldset class = "repeating_abilities"> <table> <tr> <td class = "ab-name"><input name = "attr_abilityname"></td> <td class = "ab-roll"> <select name = "attr_abilityroll"> <option>1d6</option> <option>2d6k1</option> <option selected>2d6</option> <option>3d6k2</option> <option>3d6</option> </select> </td> <td class = "ab-range"><input name = "attr_abilityrange"></td> <td class = "ab-effect"><textarea name = "attr_abilityeffect"></textarea></td> <td class = "ab-condition"><textarea name = "attr_abilitycondition"></textarea></td> </tr> </table> </fieldset> This doesn't seem to affect any other elements in the repeating row, just inputs. Help? I've checked to make sure that they're not sharing names with any other element on the sheet, so I genuinely have no idea.