Dear Developers ,
I need the logic and code for multiple selections for dropdown list in asp.net using either javascript or JQuery..,
This logic or program reply to either this mail or [email protected]
Thanks,
TVS Narasimha Murthy,
Associate Software Engineer,
Blue Frog Mobile Technologies,
Visakahpatnam
Joginder BangerPosted Mar 24, 2014, 8:18 AM
check out a complete code hit this link here is a multiple example
<head>
<link href="multiple-select.css" rel="stylesheet"/> </head> <select multiple="multiple"> <option value="1">January</option> ... <option value="12">December</option> </select> <script src="jquery.multiple.select.js"></script> <script> $("select").multipleSelect({ placeholder: "Here is the placeholder" }); </script>