/    Sign up×
Community /Pin to ProfileBookmark

Need Help to this

Hi Guys,
I need to write a javascript which does this.
When user clicks on checkbox First Name and Last Name fields should be displayed when they uncheck it these 2 fields should be hidden.

Thanks
alidar
<html>
<HEAD>
<script language=”JavaScript” type=”text/javascript”>

</script>
</head>

<body >
<form>
<input type=”checkbox” name=”option1″ value=”name”>
<br>
First name:
<input type=”text” name=”firstname”>
<br>
Last name:
<input type=”text” name=”lastname”>

</form>
</body>
</html>

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@QuentinApr 26.2006 — Try this code:

[CODE]<html>

<head>
<title>Toggle Fields via Checkbox</title>
</head>

<body>
<form>
<input type="checkbox" name="option1" value="name" onchange="document.getElementById('name').style.display = (this.checked) ? '' : 'none';">
<br>
<div id="name" style="display: none;">
First name:
<input type="text" name="firstname">
<br>
Last name:
<input type="text" name="lastname">
</div>
</form>
</body>

</html>[/CODE]
Copy linkTweet thisAlerts:
@tabzterApr 26.2006 — Hi Guys,

I need to write a javascript which does this.

When user clicks on checkbox First Name and Last Name fields should be displayed when they uncheck it these 2 fields should be hidden.

Thanks

alidar

<script type="text/javascript">

function visibleToggle(elem,state) {

document.getElementById(elem).style.display = state;

}

document.getElementById('check').onclick = function() {

var elemID = "toggle";

if (this.checked)

visibleToggle(elemID,"none");

else

visibleToggle(elemID,"");

}

</script>

.

.

<input type="checkbox" name="option1" value="name" id="check" />

<div id="toggle">

First name:

<input type="text" name="firstname" />

<br />

Last name:

<input type="text" name="lastname" />

</div>

.

.

.
×

Success!

Help @alidar777 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.18,
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,
)...