I'm fairly new to JS and cakephp, humble apologies.
I have a textarea which uses ckeditor to make it a wysiwyg. I also have a bit of JS which watches the ckeditor and when a user types into it, whatever they type appears in a div elsewhere on the page.
My ckeditor allows the text to be bold, italic, underlined and resized. When I apply styles to the text in the ckeditor textarea, I want them to reflected in the div which updates. At the moment only underline and resizing the text works. Choosing bold or italic does nothing :(
I've been told: "Ckeditor is using strong for bold, em for italics. My guess is that the browser or framework you are using doesn't apply bold and italics styles to those tags. You'll have to do that yourself."
I've tested on several browsers so assume it is the framework? Can anyone tell me if this is right and if so, how do I go about doing that myself?
heres the JS I'm using to update the div:
timer = setInterval('updateDiv()',100);
function updateDiv(){
var editorText = CKEDITOR.instances.editor1.getData();
$('#story').html(editorText);
}
EDIT Just to clarify - the text updates ok, but when bold or italic are applied they don't.
Also - I checked in FF Opera Safari Chrome IE8 & IE9 and its the same in all them. Underline works, resize works but neither bold or italic do. Interestingly in IE7 bold and italic do! What's going on with that?!?