Hi, I'm pretty new to FCKEditor, so sorry for the dumb question. I've noticed that the HTML code generated for, say, a simple "bold" formatting, is not the same for IE and Firefox. In IE <strong> is used, whilst in Firefox the <span style"..." ...> tag is used.
Also, if I edit the code with Firefox and then load it with Internet Explorer, removing the formatting does not work, as if FKCEditor under IE is not recognising the <span ...> formatting at all.
Is there any way to make Firefox produce simpler formatting code, and make it at the same time compatible with IE? Oh, I'm using FCKEditor RC2, IE 6 and Firefox 1.0
Also, if I edit the code with Firefox and then load it with Internet Explorer, removing the formatting does not work, as if FKCEditor under IE is not recognising the <span ...> formatting at all.
Is there any way to make Firefox produce simpler formatting code, and make it at the same time compatible with IE? Oh, I'm using FCKEditor RC2, IE 6 and Firefox 1.0
RE: Code generated depends on browser type?
you'll find these lines:
// Tells Gecko browsers to use SPAN instead of <B>, <I> and <U>.
FCKConfig.GeckoUseSPAN = true ;
Set to false to change code formatting.
RE: Code generated depends on browser type?
Thank you, it worked