Jump to content

html form choices


techker

Recommended Posts

This can easily be achieved using jQuery. If someone has a different method I'd also like to know. Here's how I did it:

 

$(document).ready(function() {

$(".classOfForm").change(function() {

				if ($(".classOfForm").val() == "0"){

					$(".classYouWannaHide").hide();

				} else {

					$(".classYouWannaHide").show();

				}

			});

});

 

So basically assign .classOfForm to the check box or form selection you want to change. And give the form you want to appear a class of .classYouWannaHide

 

Let me know if you need further help.

Link to comment
https://forums.phpfreaks.com/topic/264676-html-form-choices/#findComment-1357114
Share on other sites

  • 3 weeks later...

You could write a simple JavaScript function to do this for you.

 

function setState(element, state) {
     var elem = document.gelElementById(element):
     elem.style.display(state);

 

In HTML:

 

<input type="checkbox" value="yes" name="name" onchange="setState('elementID', 'block');" />

 

You would replace none with inline or block to set the element to display. The CSS display attribute of each element will have to be set to none.

This code is not tested and may not be 100% complete

Link to comment
https://forums.phpfreaks.com/topic/264676-html-form-choices/#findComment-1362658
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.