Skip to content

Switch URLs to HTTPS #628

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

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 3 additions & 3 deletions page/jquery-mobile/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ In the `<body>`, a div with a `data-role` of `page` is the wrapper used to delin
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page">
Expand Down
6 changes: 3 additions & 3 deletions page/jquery-mobile/theme-roller.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ To start using your theme, you can either start from the provided `index.html`,
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/themes/my-custom-theme.css">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css">
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
```

Expand Down
2 changes: 1 addition & 1 deletion page/jquery-ui/environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"level": "intermediate"
}</script>

In addition to being available on [CDN](http://code.jquery.com/)s and [Download Builder](http://jqueryui.com/download/), jQuery UI also integrates into a number of development environments.
In addition to being available on [CDN](https://code.jquery.com/)s and [Download Builder](http://jqueryui.com/download/), jQuery UI also integrates into a number of development environments.
2 changes: 1 addition & 1 deletion page/performance/read-the-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"attribution": [ "jQuery Fundamentals" ]
}</script>

Use the source as your documentation. Bookmark [the source code](http://code.jquery.com/jquery/) and refer to it often.
Use the source as your documentation. Bookmark [the source code](https://code.jquery.com/jquery/) and refer to it often.
2 changes: 1 addition & 1 deletion page/using-jquery-core/document-ready.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The example below shows `$( document ).ready()` and `$( window ).load()` in acti
```
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
$( document ).ready(function() {
console.log( "document loaded" );
Expand Down