Skip to content

Commit 6fb08fd

Browse files
committed
Pages: Use https urls in markdown files
Prevent mixed content problems
1 parent e9a132c commit 6fb08fd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pages/documentation.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You may need different ways to specify validation rules according to the server-
1111
**"But aren't there already a ton of validation plugins out there?"**
1212
Right, there are a lot of non-jQuery-based solutions (which you'd avoid since you found jQuery) and some jQuery-based solutions. This particular one is one of the oldest jQuery plugins (started in July 2006) and has proved itself in projects all around the world. There is also an [article](http://bassistance.de/2007/07/04/about-client-side-form-validation-and-frameworks/) discussing how this plugin fits the bill of the should-be validation solution.
1313

14-
Not convinced? [Have a look at this example](http://jqueryvalidation.org/files/demo/):
14+
Not convinced? [Have a look at this example](https://jqueryvalidation.org/files/demo/):
1515

1616
<pre><code>
1717
<form class="cmxform" id="commentForm" method="get" action="">
@@ -175,8 +175,8 @@ So the correct code looks slightly different:
175175

176176
# Demos
177177

178-
## [The Marketo sign-up form](http://jqueryvalidation.org/files/demo/marketo/)
179-
### [The Marketo sign-up form, step 2](http://jqueryvalidation.org/files/demo/marketo/step2.htm)
178+
## [The Marketo sign-up form](https://jqueryvalidation.org/files/demo/marketo/)
179+
### [The Marketo sign-up form, step 2](https://jqueryvalidation.org/files/demo/marketo/step2.htm)
180180
Based on an old version of the marketo.com sign-up form. The custom validation was once replaced with this plugin. Thanks to Glen Lipka for contributing it!
181181

182182
*Notable features of the demo:*
@@ -187,23 +187,23 @@ Based on an old version of the marketo.com sign-up form. The custom validation w
187187
* A custom method for making the billing address on step 2 optional when "Same as Company Address" is checked
188188
* A custom method for checking the password: Checks that the password contains at least one number and one character and that it is at least 6 characters long. If the user blurs the field with an invalid value, the input is emptied and gets focus again.
189189

190-
## [The Remember The Milk sign-up form](http://jqueryvalidation.org/files/demo/milk/)
190+
## [The Remember The Milk sign-up form](https://jqueryvalidation.org/files/demo/milk/)
191191
The sign-up form from rememberthemilk.com (based on an older version). The custom validation was replaced using this plugin. Thanks to RTM for contributing!
192192

193193
*Notable features of the demo:*
194194

195195
* Custom message display, based on the original table layout, using success option to display a checkmark for valid fields
196196
* Remote validation of username, to check if it is already taken (try "Peter", "asdf" or "George")
197197

198-
## [A multipart "buy&amp;sell a house" form](http://jqueryvalidation.org/files/demo/multipart/)
198+
## [A multipart "buy&amp;sell a house" form](https://jqueryvalidation.org/files/demo/multipart/)
199199
Contributed by Michael Evangelista, showing a multipart form for buying and selling houses.
200200

201201
*Notable features of the demo:*
202202

203203
* Multipart, implemented using the jQuery UI accordion and a custom method to check if an element is on the current page when validated
204204
* Integration with masked-input plugin, see Phone and Zip fields
205205

206-
## [Using remote validation to help with captchas](http://jqueryvalidation.org/files/demo/captcha/)
206+
## [Using remote validation to help with captchas](https://jqueryvalidation.org/files/demo/captcha/)
207207
Features remote validation for helping the user to fill out captchas.
208208

209209
*Notable features of the demo:*

pages/reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ To skip validation while still using a submit-button, add the attribte "formnova
106106

107107
This used to work by adding `class="cancel"` to the input, this is now deprecated.
108108

109-
[Demo for the cancel button](http://jqueryvalidation.org/files/demo/errorcontainer-demo.html)
109+
[Demo for the cancel button](https://jqueryvalidation.org/files/demo/errorcontainer-demo.html)
110110

111111
# Validation event
112112
By default, forms are validated on submit, triggered by the user clicking the submit button or pressing enter when a form input is focused (option `onsubmit`). In addition, once a field was highlighted as being invalid, it is validated whenever the user types something in the field (option `onkeyup`). When the user enters something invalid into a valid field, it is also validated when the field loses focus (option `onblur`).

0 commit comments

Comments
 (0)