1

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>
Ganapathy
  • 545
  • 1
  • 6
  • 23
Ninad
  • 63
  • 1
  • 3
  • 15

1 Answers1

1

Here you can find your example working right.
I think you've included in your project bad files (js or css ones).

Nico Vignola
  • 479
  • 8
  • 16