Bootstrap Multiselect Dropdown in Popup Example
In this example, i will share with you example of multiselect listbox in popup using popupMultiSelect.js plugin. popupMultiSelect plugin you can simply use in your php, laravel, codeigniter, angularjs projects.
We may sometime require to make multiple select on select box. You can simply use select box with multiple attribute. But if you are using Bootstrap then you can make it pretty good layout. Yes in this example we will use popupMultiSelect plugin for multiselect dropdown box. popupMultiSelect plugin provide us when you click on select box it will open popup and display all options there. You can simply choose as you want. popupMultiSelect also provide validation for max select limit and etc.
So, Here you can see bellow code how to use multiselect() of jquery function.
Code:
$("#my-language").multiselect(
{
title: "Select Language",
maxSelectionAllowed: 5
});
Now we will make on simple full example of popupMultiSelect So, you have to copy bellow code and use it. You can also see bellow preview for this example.
Preview:
Example:
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Popupmultiselect Example</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="http://harshniketseta.github.io/popupMultiSelect/dist/stylesheets/multiselect.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="http://harshniketseta.github.io/popupMultiSelect/dist/javascripts/multiselect.min.js"></script>
</head>
<body>
<div class="container">
<h1>Bootstrap Popupmultiselect Example</h1>
<select multiple name="language" id="my-language">
<option value="1">Laravel</option>
<option value="2">PHP</option>
<option value="3">Codeigniter</option>
<option value="4">JQuery</option>
<option value="5">HTML</option>
<option value="6">CSS</option>
<option value="7">AngularJS</option>
</select>
</div>
<script type="text/javascript">
$("#my-language").multiselect(
{
title: "Select Language",
maxSelectionAllowed: 5
});
</script>
</body>
</html>
You can get more information about this plugin from here : popupMultiSelect.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Notification Alert using Bootstrap Notify Plugin Example
- PHP Bootstrap Autocomplete Tokenfield using Ajax Example
- Bootstrap Lightbox Plugin Example Code
- Bootstrap Digital Clock Picker with AM PM using Clockface JS
- Bootstrap Color Picker using Mjolnic Colorpicker Example
- AngularJS Tooltip using UI Bootstrap tpls HTML Example
- How to Change View Mode in Bootstrap Datepicker Like yyyy-mm?
- JQuery Bootbox Modal Dialog Prompt Example
- Bootstrap Dynamic Autocomplete search using Typeahead JS
- Bootstrap Datepicker Change Date Format Example
- Bootstrap Colorpicker Example Code
- Bootstrap Timepicker using Datetimepicker JS Example
- JQuery Delete Confirm Modal using Bootbox Example
- How to Use Collapse Example in Bootstrap?