/    Sign up×
Community /Pin to ProfileBookmark

Need assistance with creating a quick script

I have a simple form where users input their background information and one user wants a country field added for home address, but if the country added is not USA the user wants the State and Zip fields to not show. Is there a simple script that can handle this? All help is greatly appreciated.

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@TheBearMayFeb 23.2005 — You could try something like:

[code=php]<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
function checkCountry(cCode){
if(cCode=="USA"){
document.getElementById("stateCode").style.display="inline";
document.getElementById("zipCode").style.display="inline";
} else {
document.getElementById("stateCode").style.display="none";
document.getElementById("zipCode").style.display="none";
}
}
</script>
</head>

<body>
<select onchange="checkCountry(this.value);">
<option value="">----Select Country----</option>
<option value="USA">USA</option>
<option value="FR">FR</option>
</select>
<input type="text" id="stateCode" style="display:none">
<input type="text" id="zipCode" style="display:none">

</body>
</html>[/code]
Copy linkTweet thisAlerts:
@cb3authorFeb 24.2005 — Thanks for your help. I should be able to tailor this script to my need.
Copy linkTweet thisAlerts:
@TheBearMayFeb 24.2005 — Glad I could help. Good Luck.
×

Success!

Help @cb3 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.12,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...