Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html> 
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
  92
<style>
  .hideme {
    display:none;
  }
  </style>
</head> 
<body> 
<form>
  
  <select id="type">
    <option value="1">c</option>
    <option selected=selected value="2">s</option>
    <option value="3">a</option>
  </select>
  <input selected=selected class="hideme" id="extraInput" type="text"/>
  
   
  </form>
  </body>
</html>
 
$(function() {
  
  $('#type').change(function() {
        var typeSelected = $(this).val();
    
        if (typeSelected == 2) {
            $('#extraInput').fadeIn(200);
        }
    }).change();
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers