Show and Hide Text Box Based on Selected Picklist Value using Jquery
<html> <head> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#types').change(function(){ if($('#types').val() === 'Other') { $('#other').show(); } else { $('#other').hide(); } }); }); </script> </head> <body> <select id="types" name="types" > <option value="Type 1">Type 1</op...