> desired. But after the form submits, page refreshes etc, the lastradiobuttons > in the list are selected. IE, rather than defaulting to > the first element selected as it did the first time, it defaults to > the last. As this form will be submitted many times in a row, and the > first option is the most often used, this proves to be a bit of a > pain. I've tried this in multiple browsers to the same effect, so I'm
I've experienced the same behaviour, and I noticed something that probably is the solution. I have a website that provides several quizes and questionaires, and all radio buttons created using the INPUT() method have the "checked" attribute set by default. I tried to define it explicitly for one field only, but it's still set with all fields anyway. Since all radio buttons that belong to one group can only have one set at the same time, and all buttons have the checked attribute set, the last one definined is the one that is active. Can I somehow suppress the setting of checked in INPUT() and set it explicitly myself?