Is jquery.cookies hosted on the Google CDN?
Asked Answered
L

7

17

I can't seem to find the jquery plugin for cookies on googles CDN. Is it only available for download?

Lynda answered 2/2, 2012 at 15:47 Comment(1)
Its available on other CDNs. See: https://mcmap.net/q/696689/-is-jquery-cookies-hosted-on-the-google-cdnAlpenstock
Y
9

No, it's not on the Google CDN. All the libraries on the CDN are listed here - http://code.google.com/apis/libraries/

Yance answered 2/2, 2012 at 15:50 Comment(2)
So I'll need to host it locally on my server?Lynda
Yes, that seems to be the only way.Yance
F
10

Maybe this will do? http://www.jsdelivr.com/#!jquery.cookie It also supports SSL

Fodder answered 1/7, 2012 at 20:1 Comment(0)
Y
9

No, it's not on the Google CDN. All the libraries on the CDN are listed here - http://code.google.com/apis/libraries/

Yance answered 2/2, 2012 at 15:50 Comment(2)
So I'll need to host it locally on my server?Lynda
Yes, that seems to be the only way.Yance
I
8

It is not available on Google's CDN.

But cdnjs makes it available here: http://cdnjs.com/libraries/jquery-cookie/

cdnjs supports http/https/spdy. Seems to be more popular than jsDelivr: http://www.jsdelivr.com/#!jquery.cookie

Uptime is good http://stats.pingdom.com/4jg86a2wqei0/687131/history

Intro answered 10/5, 2013 at 3:14 Comment(0)
B
3

According to CDNperf (http://www.cdnperf.com), at the time of writing this answer, the best CDN hosting for jquery.cookies is jsDelivr (http://jsdelivr.com), both in terms of latency (<100ms) and minimum downtime.

Remember to link the .JS file from your HTML without the protocol prefix, so that it works both with HTTP and HTTPs:

//cdn.jsdelivr.net/jquery.cookie/1.4.1/jquery.cookie.min.js
Bleachers answered 7/5, 2014 at 13:42 Comment(0)
H
1

You can get it via http://cachedcommons.org, but SSL isn't available if that's a blocker.

Hygienist answered 4/5, 2012 at 14:5 Comment(1)
No longer available. Seems like the CDN is gone.Alpenstock
A
1

No, its not available on Google's Public CDN. But it is available on many other Public and Opensource CDNs. Here is the link from jQuery Cookie CDN for you:

<script src="https://pagecdn.io/lib/jquery-cookie/v1.4.1/jquery.cookie.js" integrity="sha256-uEFhyfv3UgzRTnAZ+SEgvYepKKB0FW6RqZLrqfyUNug=" crossorigin="anonymous"></script>
Alpenstock answered 8/8, 2019 at 6:43 Comment(0)
C
-1

have you ever tried: http://cdnjs.com/

Its available there.

Chad answered 17/6, 2013 at 19:51 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.