skip to Main Content

HTML: Select multiple items dropdown – Jquery

I found following code here on Stack Overflow. $(".chosen-select").chosen({ no_results_text: "Oops, nothing found!" }) <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.rawgit.com/harvesthq/chosen/gh-pages/chosen.jquery.min.js"></script> <link href="https://cdn.rawgit.com/harvesthq/chosen/gh-pages/chosen.min.css" rel="stylesheet"/> <form action="http://httpbin.org/post" method="post"> <select data-placeholder="Begin typing a name to filter..." multiple class="chosen-select" name="test"> <option value=""></option> <option>American Black Bear</option> <option>Asiatic…

VIEW QUESTION
Back To Top
Search