JSFiddle - React, Tailwind, and code Playground
by Mubasshir Pawle
HTML
<link rel="stylesheet" href="http://harvesthq.github.com/chosen/chosen/chosen.css">
<script src="http://harvesthq.github.com/chosen/chosen/chosen.jquery.js"></script>
<select data-placeholder="Your Favorite Types of Bear" multiple>
<option value=""></option>
<option>American Black Bear</option>
<option>Asiatic Black Bear</option>
<option>Brown Bear</option>
<option>Giant Panda</option>
<option selected="">Sloth Bear</option>
<option >Sun Bear</option>
<option selected="">Polar Bear</option>
<option >Spectacled Bear</option>
</select>
JavaScript
$('select').chosen({no_results_text: "Add "});
$('.no-results').live('click',function(){
alert($(this).html());
});