Return to Snippet

Revision: 25402
at March 30, 2010 06:57 by masonjo


Initial Code
$("input[name='ep']").change(function(){
					 if ($("input[name='ep']:checked").val() == 'no')
						  $('#yourpt').hide();
					 else if ($("input[name='ep']:checked").val() == 'yes')
						  $('#yourpt').show();
				});

Initial URL


Initial Description


Initial Title
Show field based on radio buttons

Initial Tags


Initial Language
jQuery