---
uid: javascriptlibraryinclude
locale: en
title: JavascriptLibraryInclude Theme object
dnnversion: 09.02.00
previous-topic: hostname
next-topic: jsexclude
related-topics: theme-objects,themes,create-theme
links:
---
# JavascriptLibraryInclude Theme Object Introduction
**Current Version:** 01.00.00
## Include in Theme
### ASCX
``` html
<%@ Register TagPrefix="dnn" TagName="JavascriptLibraryInclude" Src="~/Admin/Skins/JavascriptLibraryInclude.ascx" %>
<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" />
```
### HTML Token
### HTML Object Token
``` html
```
| Attribute | Description | Default | Posssible Values | DNN Version |
| --- | --- | --- | --- | --- |
| Name | The name of the JavaScript library | | String | 01.00.00 |
| Version | The version of the JavaScript library | | Version | 01.00.00 |
| SpecificVersion | How specificly the Version attribute should be applied | | Exact<br/>Latest | 01.00.00 |
## Examples:
### Load Selectize Latest
~~~html
<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" SpecificVersion="Latest" Name="Selectize" />
~~~
### Load Selectize specific version 0.12.4
~~~html
<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" Version="00.12.04" SpecificVersion="Exact" Name="Selectize" />
~~~