Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 766 Bytes

PUBLIC_FUNCTIONS.md

File metadata and controls

36 lines (26 loc) · 766 Bytes

Select.js - Public Functions:

Below is a list of all the public functions that can be called from the Select.js instance.

Configuration:

setConfiguration( newOptions ):

Sets the specific configuration options that should be used.
Parameter: newOptions: 'Options' - All the configuration options that should be set (refer to "Configuration Options" documentation for properties).
Returns: 'Object' - The Select.js class instance.

Additional Data:

getVersion():

Returns the version of Select.js.
Returns: 'string' - The version number.

Example:

<script> 
    var version = $select.getVersion();
</script>