1
0
mirror of synced 2024-11-23 21:36:09 +03:00
select2/pages/01.getting-started/01.installation/docs.md
2017-09-02 20:34:47 -04:00

68 lines
1.9 KiB
Markdown

---
title: Installation
taxonomy:
category: docs
---
In order to use Select2, you must include the JavaScript and CSS file on
your website. You can get these files built for you from many different
locations.
## Using Select2 from a CDN
Select2 is hosted on both the
<a href="https://cdnjs.com/libraries/select2">cdnjs</a> and
<a href="https://www.jsdelivr.com/#!select2">jsDelivr</a> CDNs, allowing
you to quickly include Select2 on your website.
### Include the assets
Include the following lines of code in the <code>&lt;head&gt;</code>
section of your HTML.
```
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
```
>>> <i class="fa fa-info-circle"></i> Immediately following a new release, it takes some time for CDNs to
catch up and get the new versions live on the CDN.
### Initialize Select2
Initialize Select2 on the <code>&lt;select&gt;</code> element that you want to make awesome.
```
<script type="text/javascript">
$('select').select2();
</script>
```
### Read the docs
Check out the <a href="/examples">examples chapter</a> to start using the additional features of Select2.
## Downloading the code locally
In some situations, you can't use Select2 from a CDN and you must include the files through your own static file servers.
### Download the code
<a href="https://github.com/select2/select2/tags">
Download the code
</a>
from GitHub and copy the `dist` directory to your project.
### Include the assets
Include the following lines of code in the `<head>` section of your HTML.
```
<link href="path/to/select2.min.css" rel="stylesheet" />
<script src="path/to/select2.min.js"></script>
```
### Read the docs
Check out the <a href="/examples">examples chapter</a> to start using the additional features of Select2.