This is a very simple example where we can have single and multiple selection list box without the help of JAVASCRIPT, we are using only HTML, here is the code.
<html> <head> <title>Single / Multiple Selects</title> </head> <body> Drop down select with multiple choices<br /> Use SHIFT- or CTRL- for selection picks <select id="lstBxEmail_1" name="listBoxEmail" multiple="multiple"> <option>Java</option> <option>PHP</option> <option>Perl</option> <option>Javascript</option> <option>C#</option> <option>Powershell</option> </select> <p> Normal select box<br /> Try to make multiple selections here <select id="lstBxEmail_2" name="listBoxEmail" size="6"> <option>Java</option> <option>PHP</option> <option>Perl</option> <option>Javascript</option> <option>C#</option> <option>Powershell</option> </select> </p></body> </html>
Here we are just using the option MULTIPLE ![]()
Incoming search terms:
- multiple selection listbox (13)
- html listbox single select (5)
- Multiselect listbox HTML (5)
- jquery listbox example (5)
- multiple list box in jsp (4)
- powershell listbox example (4)
- powershell select box (4)
- multiselect listbox in jsp (3)
- perl html listbox (3)
- multiple selection list box jquery (3)
- html dropdown multiple select perl (3)
- jQuery MultiSelect and jsp (3)
- single selection listbox in jsp (3)
- jquery multiselect listbox example (3)
- listbox using jquery in jsp (3)
- Lucida Sans Unicode fpdf (3)
- jquery multi select with php and mysql (3)
- multi select dropdown in jsp (3)
- multiselect dropdownlist using java (3)
- php multiple selection list box (2)
- how to disabled multiple select in jsp (2)
- php multiple select list video tutorial (2)
- listbox find yii example (2)
- drop down multiple select using ajax in jsp mysql (2)
- multiple select jquery php mysql (2)
- jsp tutorial listbox with multiple (2)
- Multiple select using js in jsp (2)
- powershell multi select drop down (2)
- multiple selection in dropdown in php jquery (2)
- jquery single multiple list box (2)
- jquery multiselect listbox# (2)
- disable multiple selection listbox javascript (2)
- jquery multiple selection listbox (2)
- jquery multiselect listbox demo (2)
- jquery listbox tutorial (2)
- html ListBox multiple selection (2)
- jquery html listbox single select (2)
- multiselect dropdown jquery in php mysql (2)
- html multiple listbox demo (2)
- select multiple jsp mysql (2)
You will also be interested in ,
- Pass PHP Value To Javascript
- How to close a child window from a parent window using javascript
- Calendar Script Using Javascript [Updated]
- Close Event In Javascript Using OnUnload()
- Close Event In Javascript For Firefox, IE and Chrome
- Cursor:hand css not working with mozilla/firefox
- New horizontal drop down menu using css
- Text auto slide information box using javascript.
- Change background color using php for a webpage
- How To Set And Get Cookies Using PHP

