Skip to content

Update to use cdn urls #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions entries2html.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<body>
&lt;form id=&quot;myform&quot;&gt;<xsl:copy-of select="html/text()"/>&lt;/form&gt;
&lt;script src="http://code.jquery.com/jquery-1.11.1.min.js"&gt;&lt;/script&gt;
&lt;script src="http://jqueryvalidation.org/files/dist/jquery.validate.min.js"&gt;&lt;/script&gt;
&lt;script src="http://jqueryvalidation.org/files/dist/additional-methods.min.js"&gt;&lt;/script&gt;
&lt;script src="http://cdn.jsdelivr.net/jquery.validation/1.15.0/jquery.validate.min.js"&gt;&lt;/script&gt;
&lt;script src="http://cdn.jsdelivr.net/jquery.validation/1.15.0/additional-methods.min.js"&gt;&lt;/script&gt;
&lt;script&gt;
// just for the demos, avoids form submit
jQuery.validator.setDefaults({
Expand Down
11 changes: 11 additions & 0 deletions pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ <h3>Installation via Package Managers</h3>
<li><a href="https://www.nuget.org/packages/jquery.validation">NuGet</a>: <code>Install-Package jQuery.Validation</code></li>
</ul>

<h3>
1.15.0 files on Microsoft's Ajax CDN (hotlinking welcome):</h3>
<ul>
<li><a href="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.js">http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.js</a></li>
<li><a href="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.min.js">http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.min.js</a></li>
<li><a href="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/additional-methods.js">http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/additional-methods.js</a></li>
<li><a href="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/additional-methods.min.js">http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/additional-methods.min.js</a></li>
<li>Localization Files at http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/localization/messages_##.js where ## is the loc code.</li>
<li><a href="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8/jquery.validate-vsdoc.js">vsdoc file for VisualStudio</a></li>
</ul>

<h3>
<a href="http://www.jsdelivr.com/#!jquery.validation">Latest files on jsDelivr CDN</a> (hotlinking welcome):</h3>
<ul>
Expand Down