1
0
mirror of synced 2024-11-23 21:36:09 +03:00
select2/pages/02.configuration/01.initializing/docs.md

15 lines
306 B
Markdown
Raw Normal View History

2017-09-03 03:34:47 +03:00
---
title: Initializing
taxonomy:
category: docs
---
To configure custom options, simply pass an object containing all of the options with which you would like to initialize Select2, in your call to `.select2()`:
```
$('.js-example-basic-single').select2({
placeholder: 'Select an option'
});
```