ItSolutionStuff.com

JQuery Select Box with Search Option using Chosen Plugin

By Hardik Savani • November 5, 2023
jQuery

There are several plugins available in google like select2,selectbox etc, But i found Chosen Plugin for select box with search option. You can also use with bootstrap. I give you full example of select box with search option. After run this example you will find bellow preview.

Preview:

Example:

<html lang="en">

<head>

<title>Jquery Chosen - Select Box with Search Option</title>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.5.1/chosen.min.css">

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.5.1/chosen.jquery.min.js"></script>

</head>

<body>


<div style="width:520px;margin:0px auto;margin-top:30px;">

<h2>Select Box with Search Option Jquery</h2>

<select class="chosen" style="width:500px;">

<option>PHP</option>

<option>PHP Array</option>

<option>PHP Object</option>

<option>PHP Wiki</option>

<option>PHP Variable</option>

<option>Java</option>

<option>C</option>

<option>C++</option>

</select>

</div>


<script type="text/javascript">

$(".chosen").chosen();

</script>


</body>

</html>

Let's try..., you get more information from here : chosen.

Tags: jQuery
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 10 JQuery UI Ajax Autocomplete Search Example

Read Now →

Laravel JQuery Ajax Loading Spinner Example

Read Now →

How to Remove Special Characters from a String in JQuery?

Read Now →

JQuery Remove All Numbers from String Example

Read Now →

How to Download File using JQuery?

Read Now →

How to use Laravel Variable in JQuery?

Read Now →

PHP Ajax Inline Editing using X-editable Bootstrap JS Example

Read Now →

How to Disable Right Click Menu using JQuery?

Read Now →

PHP Crop Image Before Upload using Croppie JS Example

Read Now →

PHP JQuery Select2 Ajax Autocomplete Example

Read Now →

JQuery Tooltip Example using JQuery UI Plugin

Read Now →

JQuery Hide and Show Password using Eye Icon Example

Read Now →

How to access PHP variables in JQuery?

Read Now →

How to Convert Line Breaks to br in jQuery ?

Read Now →