Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
  <script src="http://harvesthq.github.io/chosen/chosen.jquery.js"></script>
  <link rel="stylesheet" href="http://harvesthq.github.io/chosen/chosen.css" />
  <meta charset="utf-8">
  <title>JS Bin</title>
  <script>
    jQuery(document).ready(function() {
       jQuery("#ddlCarList").chosen();
    });
  </script>
</head>
<body>
<select id="ddlCarList" multiple="multiple">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes" selected="selected">Mercedes</option>
  <option value="audi" selected="selected">Audi</option>
</select>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers