I'm using CKEditor for a backend in my web app. When I copy and paste text from another place, it adds <div>Â</div>
at the end of the copy pasted text, This even become worse when I post into a database. It adds a lot of the Â
and character in unwanted areas. How can I resolve this?I also have jQuery libraries in my web app.
Asked
Active
Viewed 1,498 times
1

sammyukavi
- 1,501
- 2
- 23
- 51
2 Answers
3
I fixed it by changing the page encoding from <META http-equiv="Content-Type" CONTENT="text/html; charset=iso-8859-1"/>
to <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
. More information can be found here

Community
- 1
- 1

sammyukavi
- 1,501
- 2
- 23
- 51