Skip to content

Instantly share code, notes, and snippets.

@mrgenixus
Created July 22, 2011 21:49
Show Gist options
  • Save mrgenixus/1100499 to your computer and use it in GitHub Desktop.
Save mrgenixus/1100499 to your computer and use it in GitHub Desktop.
<html>
<head>
<link rel="stylesheet" href="https://raw.github.com/harvesthq/chosen/master/chosen/chosen.css" />
</head>
<body>
<form>
<select name='Organization' class='chzn-select'><option value=''></option><option value='Our Company'></option><option value='Test Company'></option>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script src="https://github.com/harvesthq/chosen/blob/master/chosen/chosen.jquery.js" type="text/javascript"></script>
<script type="text/javascript"> (function($){
$(document).ready(function(){
$(".chzn-select").chosen());
})
})(jQuery)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment