Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Latest commit

 

History

History

select

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Select Menus

Usage

Stylesheets

@import "myg-select/select"

Javascript

import MygSelect from 'myg-select';

document.addEventListener( 'ready', () => {
  const mygSelects = MygSelect.initAll( document.querySelectorAll('.myg-select'), {} );
})

or

import * as myg from 'myg/src/myg';
const MygSelect = myg.MygSelect;

document.addEventListener( 'ready', () => {
  const mygSelects = MygSelect.initAll( document.querySelectorAll('.myg-select'), {} );
})