learn.microsoft.com Open in urlscan Pro
2600:140b:400:293::3544  Public Scan

Submitted URL: http://ajax.aspnetcdn.com/
Effective URL: https://learn.microsoft.com/en-us/aspnet/ajax/cdn/overview
Submission: On November 23 via api from JP — Scanned from JP

Form analysis 0 forms found in the DOM

Text Content

Skip to main content


This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security
updates, and technical support.

Download Microsoft Edge More info about Internet Explorer and Microsoft Edge

Table of contents Exit focus mode

Read in English Save
Table of contents Read in English Save Edit Print

Twitter LinkedIn Facebook Email
Table of contents


MICROSOFT AJAX CONTENT DELIVERY NETWORK ASSETS

 * Article
 * 08/05/2022
 * 15 minutes to read
 * 13 contributors

Feedback


IN THIS ARTICLE

Warning

Production applications should not take a hard dependency on CDN assets.
Applications should test for the CDN asset referenced, and use a fallback asset
when the CDN is not available.

The Microsoft Ajax CDN has no SLA above and beyond using an Azure CDN.

Use this GitHub issue to report problems with the Microsoft Ajax CDN.


TABLE OF CONTENTS

ajax.microsoft.com renamed to ajax.aspnetcdn.com
Visual Studio .vsdoc Support
Using ASP.NET Ajax from the CDN
Using jQuery from the CDN
Using jQuery UI from the CDN
Third-Party Files on the CDN

jQuery Releases on the CDN
jQuery Migrate Releases on the CDN
jQuery UI Releases on the CDN
jQuery Validation Releases on the CDN
jQuery Mobile Releases on the CDN
jQuery Templates Releases on the CDN
jQuery Cycle Releases on the CDN
jQuery DataTables Releases on the CDN
Modernizr Releases on the CDN
JSHint Releases on the CDN
Knockout Releases on the CDN
Globalize Releases on the CDN
Respond Releases on the CDN
Bootstrap Releases on the CDN
Bootstrap TouchCarousel Releases on the CDN
Hammer.js Releases on the CDN
ASP.NET Web Forms and Ajax Releases on the CDN
ASP.NET MVC Releases on the CDN
ASP.NET SignalR Releases on the CDN

The Microsoft Ajax Content Delivery Network (CDN) hosts popular third party
JavaScript libraries such as jQuery and enables you to easily add them to your
Web applications. For example, you can start using jQuery which is hosted on
this CDN simply by adding a <script> tag to your page that points to
ajax.aspnetcdn.com.

By taking advantage of the CDN, you can significantly improve the performance of
your Ajax applications. The contents of the CDN are cached on servers located
around the world. In addition, the CDN enables browsers to reuse cached third
party JavaScript files for web sites that are located in different domains.

The CDN supports SSL (HTTPS) in case you need to serve a web page using the
Secure Sockets Layer.

The CDN hosts the following third party script libraries which have been
uploaded, and are licensed to you, by the owners of those libraries:

 * jQuery (www.jquery.com)
 * jQuery UI (www.jqueryui.com)
 * jQuery Mobile (www.jquerymobile.com)
 * jQuery Validation (https://jqueryvalidation.org/)
 * jQuery Cycle (www.malsup.com/jquery/cycle/)
 * jQuery DataTables (http://datatables.net/)

The Microsoft Ajax CDN also includes the following libraries which have been
uploaded by Microsoft:

 * ASP.NET Ajax
 * ASP.NET MVC JavaScript Files
 * ASP.NET SignalR JavaScript Files

Microsoft does not claim ownership of any third-party libraries hosted on this
CDN. The copyright owners of the libraries are licensing these libraries to you.
Any rights that you may have to download and use such libraries are granted
solely by the respective copyright owners. Because these are not Microsoft
libraries, Microsoft provides no warranties or intellectual property rights
licenses (including no implied patent rights) for the third party libraries
hosted on this CDN.

If you wish to submit your JavaScript library and your library is one of the top
JavaScript libraries (as listed on http://trends.builtwith.com) or
extensions/plugins to these libraries that are (a) popular; or (b) helpful for
use on ASP.NET then please contact AjaxCDNSubmission@Microsoft.com.




AJAX.MICROSOFT.COM RENAMED TO AJAX.ASPNETCDN.COM

The CDN used to use the microsoft.com domain name and has been changed to use
the aspnetcdn.com domain name. This change was made to increase performance
because when a browser referenced the microsoft.com domain it would send any
cookies from that domain across the wire with each request. By renaming to a
domain name other than microsoft.com performance can be increased by as much to
25%. Note ajax.microsoft.com will continue to function but ajax.aspnetcdn.com is
recommended.

 * Old Format: https://ajax.microsoft.com/ajax/jQuery/jquery-1.8.0.js
 * New Format: https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js




VISUAL STUDIO .VSDOC SUPPORT

To use the .vsdoc files properly with Visual Studio 2008 you need to make sure
that you have VS 2008 SP1 installed and the hotfix for vsdoc files installed.
You can get these from here:

 * Download Visual Studio 2008 SP1
 * Download .vsdoc hotfix for Visual Studio 2008 SP1

Visual Studio 2010 supports .vsdoc files without any additional patches.




USING ASP.NET AJAX FROM THE CDN

When using ASP.NET 4, you can redirect all requests for ASP.NET framework
scripts to the CDN. Retrieving scripts from the CDN instead of your local web
server can substantially improve the performance of public ASP.NET websites.

Use the ScriptManager EnableCDN property to redirect all ASP.NET framework
script requests to the Microsoft Ajax CDN:

<asp:ScriptManager
    ID="ScriptManager1"
    EnableCdn="true"
    Runat="Server" />





USING JQUERY FROM THE CDN

You can use jQuery scripts hosted on CDN in your Web application by adding the
following script element to a page:

<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>


The CDN also includes the minified version of the jQuery script, which you can
get using the following element:

<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js"></script>


To allow your page to fallback to loading jQuery from a local path on your own
website if the CDN happens to be unavailable, add the following element
immediately after the element referencing the CDN:

<script>
  // Fallback to loading jQuery from a local path if the CDN is unavailable
  (window.jQuery || document.write('<script src="/scripts/jquery-1.9.0.min.js"><\/script>'));
</script>


The following sample page uses the CDN version of the jQuery library (with
fallback to a local copy) to display the contents of a div element when a button
is clicked.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>jQuery from Microsoft AJAX CDN</title>
</head>
<body>
    <button id="btn">Show Message</button>
 
    <div id="message" style="display:none">         
        <h1>Hello from jQuery!</h1>         
    </div>
 
    <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js"></script>
    <script>
        // Fallback to loading jQuery from a local path if the CDN is unavailable
        (window.jQuery || document.write('<script src="/scripts/jquery-1.9.0.min.js"><\/script>'));
    </script>
    <script>                
        function domReady() {
            $('#btn').click( showMessage );
        }
        
        function showMessage() {
            $('#message').fadeIn('slow');
        }
        
        $( domReady );
    </script>
</body>
</html>


You can learn more about jQuery and download a local copy of jQuery by visiting
the jQuery Web site.




USING JQUERY UI FROM THE CDN

The CDN also hosts the jQuery UI library. The jQuery UI library includes a rich
set of widgets and effects that you can use in your ASP.NET applications. For
example, the following page illustrates how you can use the jQuery UI Datepicker
in the context of an ASP.NET Web Forms application to display a pop-up calendar:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="TestjQueryUICDN.WebForm1" %>
<!DOCTYPE html >
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Using jQuery UI from the CDN</title>
    <link rel="Stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/themes/redmond/jquery-ui.css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>    
        <asp:TextBox ID="txtStartDate" ClientIDMode="Static" runat="server" />
    </div>
    </form>
    <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.8.0.js"></script>
    <script src="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.22/jquery-ui.js"></script>
    <script>
        $("#txtStartDate").datepicker();
    </script>
</body>
</html>


When you move focus to the TextBox using your keyboard, a calendar is displayed:



Notice that you must include three files from the CDN in the code above:

 * The jQuery library — The jQuery UI library depends on the jQuery library. You
   must add the jQuery library to your page before you add the jQuery UI
   library.
 * The jQuery UI library — The jQuery UI library contains all of the jQuery UI
   effects and widgets such as the Datepicker widget used in the page above.
 * A jQuery UI theme — The jQuery UI supports different themes. The page above
   includes a link to a CSS file to import the Redmond theme.

All of the standard jQuery UI themes are hosted on the CDN. Visit this page to
view thumbnails for each theme.

To learn more about the jQuery UI library, visit the official jQuery UI website.




THIRD-PARTY FILES ON THE CDN

The CDN hosts some of the most popular third party JavaScript libraries.
Microsoft does not claim ownership of any third-party libraries hosted on this
CDN. The copyright owners of the libraries are licensing these libraries to you.
Any rights that you may have to download and use such libraries are granted
solely by the respective copyright owners. Because these are not Microsoft
libraries, Microsoft provides no warranties or intellectual property rights
licenses (including no implied patent rights) for the third party libraries
hosted on this CDN.




JQUERY RELEASES ON THE CDN

The following releases of jQuery are hosted on the CDN:

JQUERY VERSION 3.6.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.slim.min.map

JQUERY VERSION 3.5.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.slim.min.map

JQUERY VERSION 3.5.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.0.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.0.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.0.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.0.slim.min.map

JQUERY VERSION 3.4.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.slim.min.map

JQUERY VERSION 3.4.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.0.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.0.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.0.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.0.slim.min.map

JQUERY VERSION 3.3.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.slim.min.map

JQUERY VERSION 3.2.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.slim.min.map

JQUERY VERSION 3.2.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.0.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.0.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.0.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.0.slim.min.map

JQUERY VERSION 3.1.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.slim.min.map

JQUERY VERSION 3.1.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.slim.min.map

JQUERY VERSION 3.0.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.min.map
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.slim.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.slim.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.slim.min.map

JQUERY VERSION 2.2.4

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.4.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.4.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.4.min.map

JQUERY VERSION 2.2.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.map

JQUERY VERSION 2.2.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.2.min.map

JQUERY VERSION 2.2.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.1.min.map

JQUERY VERSION 2.2.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.0.min.map

JQUERY VERSION 2.1.4

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.map

JQUERY VERSION 2.1.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.3.min.map

JQUERY VERSION 2.1.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.2.min.js

JQUERY VERSION 2.1.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.min.map

JQUERY VERSION 2.1.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0.min.map

JQUERY VERSION 2.0.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.map

JQUERY VERSION 2.0.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.2-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.2.min.map

JQUERY VERSION 2.0.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.1-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.1.min.map

JQUERY VERSION 2.0.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.0-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.0.min.map

JQUERY VERSION 1.12.4

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.map

JQUERY VERSION 1.12.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.3.min.map

JQUERY VERSION 1.12.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.2.min.map

JQUERY VERSION 1.12.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.1.min.map

JQUERY VERSION 1.12.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.min.map

JQUERY VERSION 1.11.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.map

JQUERY VERSION 1.11.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.min.map

JQUERY VERSION 1.11.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.map

JQUERY VERSION 1.11.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.0-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.0.min.map

JQUERY VERSION 1.10.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.min.map

JQUERY VERSION 1.10.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.1-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.1.min.map

JQUERY VERSION 1.10.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.0-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.0.min.map

JQUERY VERSION 1.9.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.map

JQUERY VERSION 1.9.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.0-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.0.min.map

JQUERY VERSION 1.8.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3-vsdoc.js

JQUERY VERSION 1.8.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2-vsdoc.js

JQUERY VERSION 1.8.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.1-vsdoc.js

JQUERY VERSION 1.8.0

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0-vsdoc.js

JQUERY VERSION 1.7.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js

JQUERY VERSION 1.7.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1-vsdoc.js

JQUERY VERSION 1.7

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7-vsdoc.js

JQUERY VERSION 1.6.4

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.4.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.4.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.4-vsdoc.js

JQUERY VERSION 1.6.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.3-vsdoc.js

JQUERY VERSION 1.6.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2-vsdoc.js

JQUERY VERSION 1.6.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1-vsdoc.js

JQUERY VERSION 1.6

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6-vsdoc.js

JQUERY VERSION 1.5.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.2-vsdoc.js

JQUERY VERSION 1.5.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1-vsdoc.js

JQUERY VERSION 1.5

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5-vsdoc.js

JQUERY VERSION 1.4.4

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.4.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.4.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.4-vsdoc.js

JQUERY VERSION 1.4.3

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.3.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.3.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.3-vsdoc.js

JQUERY VERSION 1.4.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2-vsdoc.js

JQUERY VERSION 1.4.1

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1-vsdoc.js

JQUERY VERSION 1.4

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.min.js

JQUERY VERSION 1.3.2

 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.3.2.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.3.2.min.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.3.2-vsdoc.js
 * https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.3.2.min-vsdoc.js




JQUERY MIGRATE RELEASES ON THE CDN

The following releases of jQuery Migrate are hosted on the CDN:

JQUERY MIGRATE VERSION 3.0.0

 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-3.0.0.js
 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-3.0.0.min.js

JQUERY MIGRATE VERSION 1.2.1

 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.2.1.js
 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.2.1.min.js

jQuery Migrate version 1.2.0

 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.2.0.js
 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.2.0.min.js

JQUERY MIGRATE VERSION 1.1.1

 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.1.1.js
 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.1.1.min.js

JQUERY MIGRATE VERSION 1.1.0

 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.1.0.js
 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.1.0.min.js

JQUERY MIGRATE VERSION 1.0.0

 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.0.0.js
 * https://ajax.aspnetcdn.com/ajax/jquery.migrate/jquery-migrate-1.0.0.min.js




JQUERY UI RELEASES ON THE CDN

The following releases of the jQuery UI library are hosted on this CDN. Click
each link to see the actual list of files.

 * jQuery UI 1.13.2
 * jQuery UI 1.13.1
 * jQuery UI 1.13.0
 * jQuery UI 1.12.1
 * jQuery UI 1.12.0
 * jQuery UI 1.11.4
 * jQuery UI 1.11.3
 * jQuery UI 1.11.2
 * jQuery UI 1.11.1
 * jQuery UI 1.11.0
 * jQuery UI 1.10.4
 * jQuery UI 1.10.3
 * jQuery UI 1.10.2
 * jQuery UI 1.10.1
 * jQuery UI 1.10.0
 * jQuery UI 1.9.2
 * jQuery UI 1.9.1
 * jQuery UI 1.9.0
 * jQuery UI 1.8.24
 * jQuery UI 1.8.23
 * jQuery UI 1.8.22
 * jQuery UI 1.8.21
 * jQuery UI 1.8.20
 * jQuery UI 1.8.19
 * jQuery UI 1.8.18
 * jQuery UI 1.8.17
 * jQuery UI 1.8.16
 * jQuery UI 1.8.15
 * jQuery UI 1.8.14
 * jQuery UI 1.8.13
 * jQuery UI 1.8.12
 * jQuery UI 1.8.11
 * jQuery UI 1.8.10
 * jQuery UI 1.8.9
 * jQuery UI 1.8.8
 * jQuery UI 1.8.7
 * jQuery UI 1.8.6
 * jQuery UI 1.8.5




JQUERY VALIDATION RELEASES ON THE CDN

The following releases of the jQuery Validation plugin are hosted on this CDN.
Click each link to see the actual list of files.

 * jQuery Validate 1.19.2
 * jQuery Validate 1.19.1
 * jQuery Validate 1.19.0
 * jQuery Validate 1.17.0
 * jQuery Validate 1.16.0
 * jQuery Validate 1.15.1
 * jQuery Validate 1.15.0
 * jQuery Validate 1.14.0
 * jQuery Validate 1.13.1
 * jQuery Validate 1.13.0
 * jQuery Validate 1.12.0
 * jQuery Validate 1.11.1
 * jQuery Validate 1.11.0
 * jQuery Validate 1.10.0
 * jQuery Validate 1.9
 * jQuery Validate 1.8.1
 * jQuery Validate 1.8
 * jQuery Validate 1.7
 * jQuery Validate 1.6
 * jQuery Validate 1.5.5




JQUERY MOBILE RELEASES ON THE CDN

The following releases of the jQuery Mobile library are hosted on this CDN.
Click each link to see the actual list of files.

 * jQuery Mobile 1.4.5
 * jQuery Mobile 1.4.2
 * jQuery Mobile 1.4.1
 * jQuery Mobile 1.4.0
 * jQuery Mobile 1.3.2
 * jQuery Mobile 1.3.1
 * jQuery Mobile 1.3.0
 * jQuery Mobile 1.2.0
 * jQuery Mobile 1.1.2
 * jQuery Mobile 1.1.1
 * jQuery Mobile 1.1.0
 * jQuery Mobile 1.1.0 RC 2
 * jQuery Mobile 1.0.1
 * jQuery Mobile 1.0
 * jQuery Mobile 1.0 RC 2
 * jQuery Mobile 1.0 RC 1
 * jQuery Mobile 1.0 beta 3




JQUERY TEMPLATES RELEASES ON THE CDN

The following releases of the jQuery Templates plugin are hosted on this CDN.
Click each link to see the actual list of files.

 * jQuery Templates Beta 1




JQUERY CYCLE RELEASES ON THE CDN

The following releases of the jQuery Cycle plugin are hosted on this CDN. Click
each link to see the actual list of files.

 * jQuery Cycle 2.99
 * jQuery Cycle 2.94
 * jQuery Cycle 2.88




JQUERY DATATABLES RELEASES ON THE CDN

The following releases of the jQuery DataTables plugin are hosted on this CDN.
Click each link to see the actual list of files.

 * jQuery DataTables 1.10.5
 * jQuery DataTables 1.10.4
 * jQuery DataTables 1.9.4
 * jQuery DataTables 1.9.3
 * jQuery DataTables 1.9.2
 * jQuery DataTables 1.9.1
 * jQuery DataTables 1.9.0
 * jQuery DataTables 1.8.2




MODERNIZR RELEASES ON THE CDN

The following releases of Modernizr are hosted on the CDN:

 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-3.5.0.js
 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js
 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.7.2.js
 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.7.1.js
 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.6.2.js
 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-1.7-development-only.js
 * https://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.0.6-development-only.js




JSHINT RELEASES ON THE CDN

The following releases of JSHint are hosted on the CDN:

 * https://ajax.aspnetcdn.com/ajax/jshint/r07/jshint.js




KNOCKOUT RELEASES ON THE CDN

The following releases of Knockout are hosted on the CDN:

 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.1.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.1.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.0.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.0.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.1.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.1.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.2.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.2.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.3.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.3.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.4.0.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.4.0.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.4.1.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.4.1.debug.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.4.2.js
 * https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.4.2.debug.js




GLOBALIZE RELEASES ON THE CDN

The following releases of Globalize are hosted on the CDN:

GLOBALIZE VERSION 1.0.0

 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/node-main.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize/currency.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize/date.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize/message.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize/number.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize/plural.js
 * https://ajax.aspnetcdn.com/ajax/globalize/1.0.0/globalize/relative-time.js

GLOBALIZE VERSION 0.1.1

 * https://ajax.aspnetcdn.com/ajax/globalize/0.1.1/globalize.min.js

 * https://ajax.aspnetcdn.com/ajax/globalize/0.1.1/globalize.js

 * https://ajax.aspnetcdn.com/ajax/globalize/0.1.1/cultures/globalize.cultures.js
   
   * all cultures
   
   * Replace "{culture-code}" with the desired culture code, e.g.
     globalize.culture.en-GB.js== Microsoft Files on the CDN ==These libraries
     were uploaded by Microsoft.




RESPOND RELEASES ON THE CDN

The following releases of Respond are hosted on the CDN:

RESPOND VERSION 1.4.2

 * https://ajax.aspnetcdn.com/ajax/respond/1.4.2/respond.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.2/respond.min.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.2/respond.matchmedia.addListener.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.2/respond.matchmedia.addListener.min.js

RESPOND VERSION 1.4.1

 * https://ajax.aspnetcdn.com/ajax/respond/1.4.1/respond.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.1/respond.min.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.1/respond.matchmedia.addListener.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.1/respond.matchmedia.addListener.min.js

RESPOND VERSION 1.4.0

 * https://ajax.aspnetcdn.com/ajax/respond/1.4.0/respond.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.0/respond.min.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.0/respond.matchmedia.addListener.js
 * https://ajax.aspnetcdn.com/ajax/respond/1.4.0/respond.matchmedia.addListener.min.js

RESPOND VERSION 1.3.0

 * https://ajax.aspnetcdn.com/ajax/respond/1.3.0/respond.js

RESPOND VERSION 1.2.0

 * https://ajax.aspnetcdn.com/ajax/respond/1.2.0/respond.js




BOOTSTRAP RELEASES ON THE CDN

The following releases of getbootstrap.com bootstrap are hosted on the CDN:

BOOTSTRAP VERSION 4.6.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.6.0/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.5.2

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.2/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.5.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.5.0/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.4.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.4.1/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.3.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.3.1/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.2.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.2.1/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.1.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 4.0.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/bootstrap.bundle.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap-grid.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap-grid.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap-grid.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap-reboot.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap-reboot.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/4.0.0/css/bootstrap-reboot.css.map

BOOTSTRAP VERSION 3.4.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.1/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.4.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.4.0/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.3.7

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.3.6

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.3.5

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.3.4

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.3.2

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.woff
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.woff2

BOOTSTRAP VERSION 3.3.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.3.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.2.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.1.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.1.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/css/bootstrap.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/css/bootstrap-theme.css.map
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.1.0/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.0.3

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.3/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.0.2

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.2/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.0.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.1/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 3.0.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/css/bootstrap-theme.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/css/bootstrap-theme.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.eot
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.svg
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.ttf
 * https://ajax.aspnetcdn.com/ajax/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.woff

BOOTSTRAP VERSION 2.3.2

 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/css/bootstrap-responsive.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/css/bootstrap-responsive.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/img/glyphicons-halflings.png
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.2/img/glyphicons-halflings-white.png

BOOTSTRAP VERSION 2.3.1

 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/bootstrap.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/bootstrap.min.js
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/css/bootstrap.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/css/bootstrap.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/css/bootstrap-responsive.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/css/bootstrap-responsive.min.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/img/glyphicons-halflings.png
 * https://ajax.aspnetcdn.com/ajax/bootstrap/2.3.1/img/glyphicons-halflings-white.png




BOOTSTRAP TOUCHCAROUSEL RELEASES ON THE CDN

The following releases of https://github.com/ixisio/bootstrap-touch-carousel
Bootstrap TouchCarousel releases are hosted on the CDN:

BOOTSTRAP TOUCHCAROUSEL VERSION 0.8.0

 * https://ajax.aspnetcdn.com/ajax/bootstrap-touch-carousel/0.8.0/css/bootstrap-touch-carousel.css
 * https://ajax.aspnetcdn.com/ajax/bootstrap-touch-carousel/0.8.0/js/bootstrap-touch-carousel.js




HAMMER.JS RELEASES ON THE CDN

The following releases of http://hammerjs.github.io/ Hammer.js releases are
hosted on the CDN:

HAMMER.JS VERSION 2.0.4

 * https://ajax.aspnetcdn.com/ajax/hammer.js/2.0.4/hammer.js
 * https://ajax.aspnetcdn.com/ajax/hammer.js/2.0.4/hammer.min.js
 * https://ajax.aspnetcdn.com/ajax/hammer.js/2.0.4/hammer.min.map




ASP.NET WEB FORMS AND AJAX RELEASES ON THE CDN

The following releases of the ASP.NET Ajax Library are hosted on the CDN. Click
each link to see the actual list of files.

 * ASP.NET Web Forms and Ajax version 4.5.2
 * ASP.NET Web Forms and Ajax version 4
 * ASP.NET Ajax version 3.5




ASP.NET MVC RELEASES ON THE CDN

The following ASP.NET MVC JavaScript files are hosted on this CDN:

ASP.NET MVC 5.2.3

 * https://ajax.aspnetcdn.com/ajax/mvc/5.2.3/jquery.validate.unobtrusive.js
 * https://ajax.aspnetcdn.com/ajax/mvc/5.2.3/jquery.validate.unobtrusive.min.js

ASP.NET MVC 5.1

 * https://ajax.aspnetcdn.com/ajax/mvc/5.1/jquery.validate.unobtrusive.js
 * https://ajax.aspnetcdn.com/ajax/mvc/5.1/jquery.validate.unobtrusive.min.js

ASP.NET MVC 5.0

 * https://ajax.aspnetcdn.com/ajax/mvc/5.0/jquery.validate.unobtrusive.js
 * https://ajax.aspnetcdn.com/ajax/mvc/5.0/jquery.validate.unobtrusive.min.js

ASP.NET MVC 4.0

 * https://ajax.aspnetcdn.com/ajax/mvc/4.0/jquery.validate.unobtrusive.js
 * https://ajax.aspnetcdn.com/ajax/mvc/4.0/jquery.validate.unobtrusive.min.js

ASP.NET MVC 3.0

 * https://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.unobtrusive-ajax.js
 * https://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.unobtrusive-ajax.min.js
 * https://ajax.aspnetcdn.com/ajax/jquery.unobtrusive-ajax/3.2.5/jquery.unobtrusive-ajax.js
 * https://ajax.aspnetcdn.com/ajax/jquery.unobtrusive-ajax/3.2.5/jquery.unobtrusive-ajax.min.js
 * https://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.validate.unobtrusive.js
 * https://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.validate.unobtrusive.min.js
 * https://ajax.aspnetcdn.com/ajax/jquery.validation.unobtrusive/3.2.10/jquery.validate.unobtrusive.js
 * https://ajax.aspnetcdn.com/ajax/jquery.validation.unobtrusive/3.2.10/jquery.validate.unobtrusive.min.js
 * https://ajax.aspnetcdn.com/ajax/mvc/3.0/MicrosoftMvcAjax.js
 * https://ajax.aspnetcdn.com/ajax/mvc/3.0/MicrosoftMvcAjax.debug.js

ASP.NET MVC 2.0

 * https://ajax.aspnetcdn.com/ajax/mvc/2.0/MicrosoftMvcAjax.js
 * https://ajax.aspnetcdn.com/ajax/mvc/2.0/MicrosoftMvcAjax.debug.js

ASP.NET MVC 1.0

 * https://ajax.aspnetcdn.com/ajax/mvc/1.0/MicrosoftMvcAjax.js
 * https://ajax.aspnetcdn.com/ajax/mvc/1.0/MicrosoftMvcAjax.debug.js




ASP.NET SIGNALR RELEASES ON THE CDN

For SignalR, we recommend a 3rd party CDN such as <cdnjs> or UNPKG.

The following ASP.NET SignalR JavaScript files are hosted on this CDN:

ASP.NET SIGNALR 2.2.2

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.2.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.2.js

ASP.NET SIGNALR 2.2.1

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.1.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.1.js

ASP.NET SIGNALR 2.2.0

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.0.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.0.js

ASP.NET SIGNALR 2.1.0

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.1.0.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.1.0.js

ASP.NET SIGNALR 2.0.3

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.3.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.3.js

ASP.NET SIGNALR 2.0.2

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.2.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.2.js

ASP.NET SIGNALR 2.0.1

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.1.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.1.js

ASP.NET SIGNALR 2.0.0

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.0.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.0.0.js

ASP.NET SIGNALR 1.1.3

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.3.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.3.js

ASP.NET SIGNALR 1.1.2

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.2.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.2.js

ASP.NET SIGNALR 1.1.1

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.1.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.1.js

ASP.NET SIGNALR 1.1.0

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.0.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.1.0.js

ASP.NET SIGNALR 1.0.1

 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.0.1.min.js
 * https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-1.0.1.js

For information about the terms of use for the CDN, see Microsoft Ajax CDN Terms
of Use.








Theme
 * Light
 * Dark
 * High contrast

 * 
 * Previous Versions
 * Blog
 * Contribute
 * Privacy
 * Terms of Use
 * Trademarks
 * © Microsoft 2022


IN THIS ARTICLE




Theme
 * Light
 * Dark
 * High contrast

 * 
 * Previous Versions
 * Blog
 * Contribute
 * Privacy
 * Terms of Use
 * Trademarks
 * © Microsoft 2022