22

Simple one: Is there any public CDN to load CKEditor like when you load jQuery from Google's CDN?

I haven't been able to find any big CDN. I guess I could always hotlink to ckeditor.com's JS file but that's not exactly what optimization means.

isherwood
  • 58,414
  • 16
  • 114
  • 157
Juan Ignacio
  • 3,217
  • 8
  • 33
  • 53

5 Answers5

22

You can submit it to http://www.cdnjs.com/ but its is not there yet.

Edit: Now is has been added: http://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.0.1/ckeditor.js

Samuel Rossille
  • 18,940
  • 18
  • 62
  • 90
Roberto Nunes
  • 1,326
  • 1
  • 9
  • 5
12

http://cdn.ckeditor.com

It is the official CDN for CKEditor, hosted by Amazon CloudFront and with SSL support. More information about using CDN and/or available types of releases can be found on CKEditor CDN Website.

Wiktor Walc
  • 5,280
  • 3
  • 25
  • 31
6

It seems available at jsdelivr.com http://www.jsdelivr.com/#!ckeditor

Semra
  • 2,787
  • 28
  • 26
  • This has the latest version and separate scripts for all plugins! – aaandre Nov 15 '13 at 21:23
  • thank you but I don't consider MAXCDN a real CDN since they don't have any servers in South America (where most of my users are) and they don't plan to. – Juan Ignacio Feb 23 '14 at 05:51
0

Links of public CDN for CKEditor

  1. https://cdn.ckeditor.com/ (Official)
  2. https://cdnjs.com/libraries/ckeditor
  3. https://www.jsdelivr.com/package/npm/ckeditor
Saurabh Mistry
  • 12,833
  • 5
  • 50
  • 71
0

Yes, CKEditor CDN is available just like Google CDN. Here is a quick snippet to include it in your HTML.

<script src="https://pagecdn.io/lib/ckeditor/4.13.0/ckeditor.js" integrity="sha256-yoULaG5POtLMfQWKvJ1pCbUSX4eM29SBpDbjkZAK6qs=" crossorigin="anonymous"></script>
Hamid Sarfraz
  • 1,089
  • 1
  • 14
  • 34