I need the value property to be able to display content that has both single (apostrophe - ' ) and double qoutes - " ).
What I am doing is echoing from php into value property content that includes both ' and ".
However, the java gets escaped from with the ' or the " depending on which one I use to set the oFCKeditor.Value.
' causes problems with
oFCKeditor.Value = 'My ring's on my finger' ;
The " causes problems with
oFCKeditor.Value = '<font size="2">hi</font>";
Any help would be appreciated. I did a search and could not find any other answers to this.
What I am doing is echoing from php into value property content that includes both ' and ".
However, the java gets escaped from with the ' or the " depending on which one I use to set the oFCKeditor.Value.
' causes problems with
oFCKeditor.Value = 'My ring's on my finger' ;
The " causes problems with
oFCKeditor.Value = '<font size="2">hi</font>";
Any help would be appreciated. I did a search and could not find any other answers to this.