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 #107.40K
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Silo45

[code=Javascript] //JavaScript function checkCountry(slctFild) { if(slctFild.selectedIndex==1) { showStateSelectBox(); hideProvinceSelectBox(); } else { if(slctFild.selectedIndex==36) { hideStateSelectBox(); showProvinceSelectBox(); } else { document.getElementById("00N200000013FlZ").selectedIndex = 0; // ERROR gets thrown here!!! document.getElementById("00N200000013Flo").selectedIndex = 0; hideStateSelectBox(); hideProvinceSelectBox(); } } } [/code] [code=Html] //HTML Registraton Form <select id="00N200000013FlU" title="Country" onchange="checkCountry(this)" name="00N200000013FlU"> <option value="" selected="selected">--None--</option> <option value="United …

Member Avatar for Taywin
0
2K