I have used selectric
plugin for the dropdown
. I have added the multiple attribute in the select tag but it is not working as they have show on the following
link of the index page of the selectric plugin : http://selectric.js.org/
This is what I have tried :
<html>
<head>
<link rel="stylesheet" type="text/css" href="selectric.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="jquery.selectric.js"></script>
</head>
<body>
<select multiple="multiple">
<option value="">Select Numbers</option>
<option value='1'>1</option>
<option value='2'>2</option>
<option value='3'>3</option>
</select>
<script>
$('select').selectric();
</script>
</body>
</html>