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
~1K People Reached
Favorite Forums
Web Development x 2
UI / UX Design x 1
Favorite Tags
asp x 2
web-design x 1
2 Posted Topics
Re: html: <select id="one"></select> <select id="two"></select> javascript: var one = ['A', 'B', 'C']; var two = [['A 1', 'A 2'],['B 1', 'B 2', 'B 3'], ['C 1', 'C 2']]; function getOptions(options) { var html = ''; for (index in options) { html += '<option>' + options[index] + '</option>' } return html; … | |
Re: document.getElementById('ZZ') is the element, not input value. <input type="text" id="ZZ" value="test" /> document.getElementById('ZZ') is '<input type="text" id="ZZ" value="" />' document.getElementById('ZZ').value is 'test' |
The End.