single quotes get replaced to special char in fckeditor page.
If the content is in the form of single quotes, fckeditor2.2 is converting it into the char like `.
So how i can i eliminate this problem.
FirstTime in the database my contnet is <a href="javascript:submitStaticform('TROUBLESHOOTING')">
In FckEditor : <a href="javascript:submitStaticform(`TROUBLESHOOTING`)">
after storing the content back to database : href="javascript:submitStaticform(¿TROUBLESHOOTING¿)">
I struck with this problem.
So pls help me on this issue
If the content is in the form of single quotes, fckeditor2.2 is converting it into the char like `.
So how i can i eliminate this problem.
FirstTime in the database my contnet is <a href="javascript:submitStaticform('TROUBLESHOOTING')">
In FckEditor : <a href="javascript:submitStaticform(`TROUBLESHOOTING`)">
after storing the content back to database : href="javascript:submitStaticform(¿TROUBLESHOOTING¿)">
I struck with this problem.
So pls help me on this issue
RE: replacement of single quotes in fckeditor
I got the solution for this problem.
In the FCKeditor.java file Single quotes are converting into right side singlequotes using ’ symbol.
So i changed this into #39;