17

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

Paul
  • 11,671
  • 32
  • 91
  • 143

7 Answers7

10

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

Jim
  • 684
  • 2
  • 8
  • 20
9

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

Dogbert
  • 212,659
  • 41
  • 396
  • 397
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

Akira Yamamoto
  • 4,685
  • 4
  • 42
  • 43
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
jose.angel.jimenez
  • 2,127
  • 23
  • 17
1

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

Christopher
  • 1,723
  • 1
  • 18
  • 31
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>
Hamid Sarfraz
  • 1,089
  • 1
  • 14
  • 34
-1

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

Its available there.

Panthro
  • 3,247
  • 2
  • 32
  • 37