> I'm curious, do you know what the input's ID has to do with the > behavior I'm seeing here? If I remove that attribute in the test > code, the popup behaves as expected, and as your advice suggests.
LABEL els are for=ID (not for=name). But the UA will fall back to `name` within FORMs if the ID is not present. That's probably what you're seeing. -- S.
