What code would i use for the customers to be able to select more then 1 service in the drop down menu?
ex. house wash & driveway cleaning
Thanks
What code would i use for the customers to be able to select more then 1 service in the drop down menu?
ex. house wash & driveway cleaning
Thanks
Use the multiple attribute and users can then use ctrl+click in desktop browsers to multi select.
Most browsers will show a scrolling list box instead of a dropdown.
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/multiple#select
Otherwise you need to convert that choice to use radio buttons, checkboxes.
Or buy a UI, or develop a custom mutil-selection UI element.
I.e. https://stackoverflow.com/questions/30190588/html-select-multiple-as-dropdown
If you need this customization you can contact me, info in signature please provide context.
ok, i didn’t think about having check boxes. I’ll do that.
Thanks!