I would like to dynamically modify the CSS in CKEDITOR. I read it is possible via jquery. But I dont know how to tell the jquery, that I want to modify the elements inside the CKEDITOR, not in the whole document.
I tried something like this, but it is not working:
function ok() {
$('textarea#editor1').css({
"color": "Blue",
"background-color": "orange"
});
Any ideas? Thanks!