40FINGERS Demo Skin

Page skin: 40f skin demo dnn-core-theme-objects // 10.00-javascriptlibraryinclude.ascx

JavascriptLibraryInclude DNN Theme Object

Generated Skin File: No Theme Created
Current Version 01.00.00

Include JavascriptLibraryInclude in a Theme

ASCX

<%@ Register TagPrefix="dnn" TagName="JavascriptLibraryInclude" Src="~/Admin/Skins/JavascriptLibraryInclude.ascx" %>
<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" />

HTML Token

HTML Object Token

Attributes

Attribute Description Default Possible 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
Latest
01.00.00

Examples

Load Selectize Latest

<%@ Register TagPrefix="dnn" TagName="JavascriptLibraryInclude" Src="~/Admin/Skins/JavascriptLibraryInclude.ascx" %>
<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" SpecificVersion="Latest" Name="Selectize" />

Load Selectize specific version 0.12.4

<%@ Register TagPrefix="dnn" TagName="JavascriptLibraryInclude" Src="~/Admin/Skins/JavascriptLibraryInclude.ascx" %>
<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" Version="00.12.04" SpecificVersion="Exact" Name="Selectize" />

Markdown

---
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" />
~~~


Skin Object Examples

Load Selectize Latest

<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" SpecificVersion="Latest" Name="Selectize" />

Load Selectize specific version 0.12.4

<dnn:JavascriptLibraryInclude runat="server" id="JavascriptLibraryInclude" Version="00.12.04" SpecificVersion="Exact" Name="Selectize" />