Comment puis-je cacher (et fadeIn) a choisi de sélectionner?

Je suis en utilisant le Choisi bibliothèque (http://harvesthq.github.com/chosen/) en tant que plugin JQuery pour améliorer sélectionner des éléments.
J'ai besoin de masquer (et puis fadeIn) la sélection, mais la façon ci-dessous ne semble pas fonctionner.

<!doctype html> 
<html lang="en"> 
<head>
   <link rel="stylesheet" href="chosen/chosen.css" />
</head>
<body>
   <select id="firstChosenSelect" data-placeholder="Choose a Country..." style="width:350px;" tabindex="2">
      <option value=""></option> 
      <option value="United States">United States</option> 
      <option value="United Kingdom">United Kingdom</option> 
      <option value="Afghanistan">Afghanistan</option>
   </select>
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
   <script src="chosen/chosen.jquery.js" type="text/javascript"></script>
   <script type="text/javascript">
     $('#firstChosenSelect').chosen();
     $('#firstChosenSelect').hide();
   </script>
</body></html>
  • Ive vous essayé de mettre votre code en jquery prêts fonction de rappel?
  • Oui, le select ne peut toujours pas se cacher.