Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
           CodeHim.com

Free Web Design Code & Scripts

       
  • Home
  • Code Snippets
    • Accordion
    • Creative
    • Carousel
    • Date & Time
    • Gallery
    • LightBox
    • Menu & Nav
    • Modal
    • Others
    • Portfolio
    • Social Media
    • Text & Input
    • Video Player
    • Zoom
  • HTML & CSS
  • Bootstrap
  • JavaScript
  • Collections
  • About
  • Contact
  • Buy Me a Coffee

Home / Vanilla JavaScript / JavaScript Single Select Dropdown

JavaScript Single Select Dropdown

January 22, 2024January 11, 2024 by Asif Mughal
JavaScript Single Select Dropdown
Share This:
Code Snippet:select javascript
Author: Andrey_y_t
Published: January 11, 2024
Last Updated: January 22, 2024
Downloads: 4,827
License: MIT
Edit Code online: View on CodePen
Read More
 Demo
Download (File path is not allowed!)

This JavaScript code snippet helps you to create a single select dropdown. It handles select items through HTML5 data-attribute. So, you can add as many options as you want in a single select dropdown.

How to Create JavaScript Single Select Dropdown

1. First of all, create the HTML structure as follows:

<div class="selects-box">
    <div class="select" data-select>
        <div class="select__selected-item" data-select-action data-select-open>
            <div class="select__selected-title" data-select-title>
                Choose item
            </div>
            <svg class="select__arrow" data-select-arrow width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M17 12L9 20L7 18L15 10" fill="#1E4DBA"/>
                <path d="M17 12L15 14L7 6L9 4" fill="#1E4DBA"/>
            </svg>
        </div>
        <div class="select__list" data-select-list>
            <div class="select__list-item" data-select-action data-select-item>CodeHim</div>
            <div class="select__list-item" data-select-action data-select-item>Free HTML code</div>
            <div class="select__list-item" data-select-action data-select-item>Web Designing</div>
            <div class="select__list-item" data-select-action data-select-item>Plugins</div>
            <div class="select__list-item" data-select-action data-select-item>Code Snippets</div>
            <div class="select__list-item" data-select-action data-select-item>Sixth item</div>
            <div class="select__list-item" data-select-action data-select-item>Eight item</div>
            <div class="select__list-item" data-select-action data-select-item>Ninth item</div>
            <div class="select__list-item" data-select-action data-select-item>Tenth item</div>
        </div>
        <input class="select__input" type="text" data-select-input>
    </div>
</div>

2. After that, add the following CSS styles into your project:

.selects-box {
  display: flex;
  flex-wrap: wrap;
}

.select {
  max-width: 280px;
  position: relative;
  width: 100%;
  margin: 20px;
}

.select__selected-item {
  background: #f4f4f4;
  padding: 10px 20px;
  border-radius: 4px;
  border: 2px solid #d8d8d8;
  color: #1e4dba;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select__selected-item:hover {
  cursor: pointer;
  background: #f9f9f9;
}

.select__arrow {
  transition: 0.3s;
}

.select__arrow_rotate {
  transform: rotate(90deg);
}

.select__list {
  border: 2px solid transparent;
  border-radius: 4px;
  position: absolute;
  width: 100%;
  top: 50px;
  z-index: 1;
  box-sizing: border-box;
  transition: 0.3s;
  overflow: auto;
  max-height: 0;
  opacity: 0;
}

.select__list_opened {
  max-height: 200px;
  border-color: #d8d8d8;
  opacity: 1;
}

.select__list-item {
  padding: 10px 20px;
  color: #6f6f6f;
  border-bottom: 1px solid #d8d8d8;
  background: #fff;
}
.select__list-item:hover {
  text-decoration: underline;
  cursor: pointer;
  background: #f9f9f9;
}
.select__list-item:first-child {
  border-radius: 2px 2px 0 0;
}
.select__list-item:last-child {
  border-bottom: none;
  border-radius: 0 0 2px 2px;
}

.select__input {
  display: none;
}

3. Finally, add the following JavaScript code and done.

const SELECT = '[data-select]'
const SELECT_LIST = '[data-select-list]'
const SELECT_ARROW = '[data-select-arrow]'
const SELECT_ACTION = '[data-select-action]'
const SELECT_TITLE = '[data-select-title]'
const SELECT_INPUT = '[data-select-input]'
const SELECT_ITEM = 'selectItem'
const OPEN_SELECT = 'selectOpen'

class Select {
  static attach() {
    const select = new Select()
    select.init()
  }

  init() {
    if (this.findSelect()) {
      this.applyListener()
    }
  }

  applyListener() {
    document.querySelector('*').addEventListener('click', e => {
      const element = e.target.closest(SELECT_ACTION)

      if (this.isCallSelectElement(element)) {
        if (this.isOpened()) {
          this.closeSelectList()
        } else {
          this.openSelectList()
        }
      }

      if (this.isCallSelectItemElement(element)) {
        this.addSelectedValue(element)
      }

      if (this.isCallSelectElement(element) !== true && this.selectOverlayIsClickedElement(element) !== true) {
        this.closeSelectList()
      }
    })
  }

  isCallSelectElement(element) {
    return element && OPEN_SELECT in element.dataset
  }

  isCallSelectItemElement(element) {
    return element && SELECT_ITEM in element.dataset
  }

  findSelect() {
    const select = document.querySelector(SELECT)

    if (select) {
      this.select = select
      this.selectList = this.select.querySelector(SELECT_LIST)
      this.selectArrow = this.select.querySelector(SELECT_ARROW)
      this.selectTitle = this.select.querySelector(SELECT_TITLE)
      this.selectInput = this.select.querySelector(SELECT_INPUT)
      return true
    }
    return false
  }

  isOpened() {
    return this.selectList.classList.contains('select__list_opened')
  }

  openSelectList() {
    this.selectList.classList.add('select__list_opened')
    this.selectArrow.classList.add('select__arrow_rotate')
  }

  closeSelectList() {
    this.selectList.classList.remove('select__list_opened')
    this.selectArrow.classList.remove('select__arrow_rotate')
  }

  addSelectedValue(element) {
    this.selectTitle.innerHTML = element.innerHTML
    this.selectInput.value = element.innerHTML
  }

  selectOverlayIsClickedElement(element) {
    return element && 'select' in element.dataset
  }
}

Select.attach()

That’s all! hopefully, you have successfully integrated this select dropdown code snippet into your project. If you have any questions or facing any issues, feel free to comment below.

Similar Code Snippets:

  • Movie Ticket Booking Using JavaScript

    Movie Ticket Booking Using JavaScript

  • Show Tooltip On Mouse Position in JavaScript

    Show Tooltip On Mouse Position in JavaScript

  • Simple Grocery List App in JavaScript

    Simple Grocery List App in JavaScript

  • Filter Table with Select Option in JavaScript

    Filter Table with Select Option in JavaScript

  • Zoom Image on Mouseover using JavaScript

    Zoom Image on Mouseover using JavaScript

  • JavaScript Add to Cart with Local Storage

    JavaScript Add to Cart with Local Storage

  • Back To Top Button in JavaScript with Smooth Scrolling

    Back To Top Button in JavaScript with Smooth Scrolling

  • Material Design Tiles Layout

    Convert SVG To Data URI Using Javascript

  • Sales Tax Calculator JavaScript

    Sales Tax Calculator JavaScript

Asif Mughal

I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences.
I truly enjoy what I’m doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.

Categories Vanilla JavaScript
Pure CSS Stylish Dropdown Menu
Simple Tabs in HTML CSS and JavaScript

Leave a Comment Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

  • Categories

    • Accordion 22
    • Bootstrap 81
      • Bootstrap Accordion 1
      • Bootstrap Buttons 4
      • Bootstrap Cards 2
      • Bootstrap Carousel 2
      • Bootstrap Dropdowns 2
      • Bootstrap Forms 6
      • Bootstrap Jumbotron 1
      • Bootstrap Modals 2
      • Bootstrap Navbars 6
      • Bootstrap Panels 1
      • Bootstrap Progress Bars 1
      • Bootstrap Text & Input 3
    • Carousel 58
    • Chart & Graph 15
    • Date & Time 49
    • Gallery 39
    • HTML5 & CSS3 201
    • Layout 17
    • LightBox 19
    • Menu & Nav 95
    • Modal 18
    • Others 58
    • Portfolio 8
    • Social Media 10
    • Text & Input 120
    • Vanilla JavaScript 163
    • Zoom 12

You May Like

Alert (7) Analog Clock (4) Analog Clocks (5) Back to Top (4) Calculator (16) Calendar (5) Chart (3) Color Picker (4) Contact Us Forms (5) Countdown Timer (6) Datepicker (9) Digital Clocks (10) Drag and Drop (4) Dropdown Menu (23) File Uploader (4) Hamburger Menu (9) Horizontal Menu (24) Hover Effects (5) HTML5 Canvas (8) Image Sliders (40) Mega Menu (11) Modal (5) Multi-Level Menu (9) News Ticker (4) Notification (9) Off-Canvas Menu (10) Pagination (5) Parallax (8) Popup Lightbox (20) Progress Bar (5) Range Sliders (4) Scrolling Effects (28) Search Box (4) Select Dropdown (4) Shopping Cart (3) Side Menu (16) Slideshow (19) Social Share Buttons (3) Tabs (9) Text (11) Timeline (5) Timer (4) Tooltip (4) Typing Effect (6) Vertical Menu (14)

Latest Code Snippets

  • Common Open Source Security Vulnerabilities and How to Mitigate ThemCommon Open Source Security Vulnerabilities and How to Mitigate Them
    October 12, 2024
  • Animating Grid-column on Hover Using CSSAnimating Grid-column on Hover Using CSS
    April 1, 2024
  • Star Trails Animation On Mousemove in JavaScriptStar Trails Animation On Mousemove in JavaScript
    March 31, 2024
  • Gravity Button Using Pure CSSGravity Button Using Pure CSS
    March 31, 2024
  • Padlock Toggle Switch in CSSPadlock Toggle Switch in CSS
    March 31, 2024
  • Scroll-driven Animations in Pure CSSScroll-driven Animations in Pure CSS
    March 31, 2024
  • Interactive Notification Center UI in Vanilla JSInteractive Notification Center UI in Vanilla JS
    March 31, 2024
  • Emoji Spinner in Vanilla JavaScriptEmoji Spinner in Vanilla JavaScript
    March 31, 2024
  • Reveal Secret Code Using CSSReveal Secret Code Using CSS
    March 31, 2024
  • Toggle Button in CSS With Stretchable Elastic EffectToggle Button in CSS With Stretchable Elastic Effect
    March 31, 2024

Popular

  • 65+ Login Page in HTML with CSS Code Sample Simple to Difficult - 947,411 views
  • 25+ Best JavaScript Shopping Cart Examples with Demo - 211,942 views
  • Bootstrap Multiselect Dropdown with Checkboxes - 150,950 views
  • Bootstrap 5 Buttons with Icon and Text Tutorial & Demo - 112,360 views
  • 19+ Bootstrap Select Dropdown with Search Box Tutorial & Examples - 101,043 views
  • Bootstrap 5 Sidebar Menu with Submenu Collapse/Hover Tutorial Demo - 88,106 views
  • 99+ Social Media Buttons HTML Code Sample & Tutorial - 86,393 views
  • 19+ Bootstrap 5 Mega Menu Responsive/Drop Down Examples - 86,392 views
  • Bootstrap 4 Modal Popup Login Form Tutorial & Demo - 82,150 views
  • Bootstrap Vertical Menu with Submenu on Click - 80,202 views

Advertisement

About CodeHim

Free Web Design Code & Scripts - CodeHim is one of the BEST developer websites that provide web designers and developers with a simple way to preview and download a variety of free code & scripts. All codes published on CodeHim are open source, distributed under OSD-compliant license which grants all the rights to use, study, change and share the software in modified and unmodified form. Before publishing, we test and review each code snippet to avoid errors, but we cannot warrant the full correctness of all content. All trademarks, trade names, logos, and icons are the property of their respective owners... find out more...

CodeHim
  • About
  • Contact Us
  • Terms and Conditions
  • Privacy Policy
Top Categories
  • Bootstrap Snippets
  • JavaScript Snippets
  • HTML CSS Snippets
  • Menu & Nav Snippets
Get in Touch

Follow us on social media to be updated with latest web design code & scripts...

All Rights Reserved © 2026 - CodeHim Inc

Please Rel0ad/PressF5 this page if you can't click the download/preview link

F5
X