Avatar of Daniish
Daniish
Flag for United Kingdom of Great Britain and Northern Ireland asked on

How to add a tick-box to form which display an INPUT field when ticked?

Hello Gurus!

Please can you show me how i can add a tick-box to a form, which when ticked displays (or 'un-greys-out') an INPUT field.



Many thanks
HTMLJavaScriptPHP

Avatar of undefined
Last Comment
b0lsc0tt

8/22/2022 - Mon
mankowitz

Use javascript, like this
<html>
<head>
</head>
<script>
function enable(){
document.forms[0].a.disabled = false;
}
</script>
<body>
<form>
<input type="checkbox" onclick="enable()">
<input name="a" type="text" disabled>
</form>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
b0lsc0tt

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
b0lsc0tt

Thanks for the grade, the points and the fun question.  I'm glad I could help.

bol
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes