Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CDN Richtext editor in jQuery?

With Dojo I can get a rich text editor with 4 lines of HTML and without putting any JavaScript files on my server:

<link rel="stylesheet"
  href="http://ajax.googleapis.com/ajax/libs/dojo/1.6/dijit/themes/claro/claro.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.6.0/dojo/dojo.xd.js"
data-dojo-config="isDebug: true,parseOnLoad: true"></script>
<script type="text/javascript"> dojo.require("dijit.Editor"); </script>
<textarea data-dojo-type="dijit.Editor" name="body" rows="10"
  cols="60" class="claro"></textarea>

I'm considering switching to jQuery. Can I do something like that with it?

Are there any jQuery CDN rich text editors available?

like image 704
Oleg Mikheev Avatar asked Dec 31 '25 12:12

Oleg Mikheev


1 Answers

I don't think your going to find this with jQuery, or tinyMCE or ckeditor or anything, because this feature depends on cross-domain loading. Dojo has good baked in support for this.

I see jquery hosted on CDNs, but no plugins.

like image 91
mtyson Avatar answered Jan 02 '26 05:01

mtyson



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!