look at the following function:
FCK will insert this as "<gwref></gwref>[text]" into the text editor even though something different is shown in the alert.
BUT, it only does this if it's not a recognized html tag, like the custom tag I have above. with <b> tags, etc, it correctly spans the text.
Does anyone know how to fix this issue? add a tag to the list, etc?
var txt = '<gwref>' + text + '</gwref>'; alert(txt); FCK.InsertHtml(txt);
FCK will insert this as "<gwref></gwref>[text]" into the text editor even though something different is shown in the alert.
BUT, it only does this if it's not a recognized html tag, like the custom tag I have above. with <b> tags, etc, it correctly spans the text.
Does anyone know how to fix this issue? add a tag to the list, etc?