Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 601 Bytes

OPTIONS.md

File metadata and controls

23 lines (16 loc) · 601 Bytes

Select.js - Configuration Options:

Below are all the configuration options that can be passed to the "setConfiguration()" public function.

Options:


Type: Name: Description:
boolean safeMode States if safe-mode is enabled (errors will be ignored and logged only, defaults to true).
Object domElementTypes The DOM element types to lookup (can be either an array of strings, or a space separated string, and defaults to "select").

Example:

<script> 
  $select.setConfiguration( {
      safeMode: false
  } );
</script>