Hello, hoping for help, I'm making a Mutants and Masterminds sheet and I want to use repeating fields for the powers, using text inputs and a textarea for notes/details. However when testing them if I type something into the textarea it resets the rest of the fieldset. I tried this on other fieldsets and they work fine, even if I put a textarea in them, the powers set is the only on that keeps resetting and its very frustrating as I've remade it over and over again but the same problem keeps occurring. Heres the fieldset: <fieldset> <table border="0" style="margin: auto;"> <tr height="5px"> <td width="50px"></td> <td width="220px"></td> <td width="50px"></td> <td width="163px"></td> <td width="56px"></td> <td width="50px"></td> <td width="55px"></td> <td width="163px"></td> </tr> <tr style="text-indent: 9px;"> <td colspan="2">Name:</td> <td>Rank:</td> <td>Action:</td> <td colspan="3">Range:</td> <td>Duration:</td> </tr> <tr> <td colspan="2"><input="text" style="width: 271px" name="attr_powername" /></td> <td><input="text" style="width: 50px" name="attr_powerrank" /></td> <td><input="text" style="width: 163px" name="attr_poweraction" /></td> <td colspan="3"><input="text" style="width: 163px" name="attr_powerrange" /></td> <td><input="text" style="width: 163px" name="attr_powerduration" /></td> </tr> <tr style="text-align: right;"> <td>Extras:</td> <td><input="text" style="width: 220px" name="attr_powerextras" /></td> <td>Feats:</td> <td colspan="2"><input="text" style="width: 220px" name="attr_powerfeats" /></td> <td>Flaws:</td> <td colspan="2"><input="text" style="width: 220px" name="attr_powerflaws" /></td> </tr> <tr> <td colspan="8" style="text-indent: 9px;">Description:</td> </tr> <tr> <td colspan="8"><textarea rows="2" style="height: 40px; width: 800px; padding: 0px; vertical-align: top;" name="attr_powerdetails" ></textarea></td> </tr> <tr> <td colspan="8" height="5px"><hr></td> </tr> </table> </fieldset>