No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
id names (which you are using via document.getElementById(name)) are [B]case sensitive[/B]. you named your div with id="NonU[U][B]S[/B][/U]", in your javascript you used ..getElementById("NonU[U][B]s[/B][/U]").. furthermore, you should not initiate a variable with the same name twice in a (function) context.. [html] function some_name() { var x= 'abc'; var x= '123'; } …
you should better use select and optgroup: [html] <select name="abc"> <optgroup label="Closely held company"> <option value="..">Sole Proprietor</option> <option value="..">Family owned</option> </optgroup> <option value="..">Public company with minority float</option> <option value="..">Public company with majority float</option> </select> [/html] anyway, if you urgently need a radio-input-solution, you might use something like this: [html] <input …
The End.
U.K.