Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Old 12-14-2005, 12:34 PM Dynamic Form
Average Talker

Posts: 23
Trades: 0
I would like to have a checkbox or 2 that when checked more form fields will appear and when uncheck they disappear. How can this be done?
tobeyt23 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-14-2005, 01:27 PM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
Here ya go...
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

	<head>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
		<title>Untitled Page</title>
		<script type="text/javascript"><!--
function showHide(div, tf) {
	(tf == true) ? displayValue = "block" : displayValue = "none";
	document.getElementById(div).style.display = displayValue;
}
//-->
</script>
	</head>

	<body bgcolor="#ffffff">
		<form id="FormName" action="" method="get" name="FormName">
			<p>Have you been convicted of a felony? <input type="radio" name="convicted" value="Yes" onclick="showHide('convict',true);"> Yes <input type="radio" name="convicted" value="No" onclick="showHide('convict',false);">No</p>
			<div id="convict" style="display:none">
			<p>If yes, explain:</p>
			<p><input type="text" name="cExplain" size="35"></p>
			</div>
		</form>
</body>

</html>

Last edited by funkdaddu; 12-14-2005 at 01:37 PM..
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Old 12-14-2005, 02:36 PM
Average Talker

Posts: 23
Trades: 0
Thank you ... perfect!
tobeyt23 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Dynamic Form
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.12211 seconds with 12 queries