Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~334 People Reached
Favorite Forums

2 Posted Topics

Member Avatar for Beards247

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'; } …

Member Avatar for Beards247
0
202
Member Avatar for haria_kishore

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 …

Member Avatar for U.K.
0
132

The End.