Home › Forums › JavaScript › [Solved] Apply CKEDITOR to all elements › Reply To: [Solved] Apply CKEDITOR to all elements
October 9, 2014 at 3:19 am
#185853
Member
Try this:
$('[contenteditable="true"]').each(function(){
$(this).ckeditor();
})