Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Apply CKEDITOR to all elements Reply To: [Solved] Apply CKEDITOR to all elements

#185853
jamygolden
Member

Try this:

$('[contenteditable="true"]').each(function(){
    $(this).ckeditor();
})