Pixabay/jQuery-tagEditor

Charset issue with delete button ร—

Opened this issue ยท 1 comments

Hi everybody,

I encountered an issue in my application in which I use now TagEditor, with the ร— character for the tag deletion button :
image

๐Ÿ‘ I solved this problem by using encoded char in the CSS file :

.tag-editor .tag-editor-delete i:before { font-size: 16px; color: #8ba7ba; content: "\00D7"; font-style: normal; }

instead of

.tag-editor .tag-editor-delete i:before { font-size: 16px; color: #8ba7ba; content: "ร—"; font-style: normal; }

I thought you would like to change this in your CSS.
I hope that it would help people who could encounter the same issue ;-)

Joffrey

This can also be solved by adding the: charset="utf-8"

<link href="jquery.tag-editor.css" rel="stylesheet" type="text/css" charset="utf-8">

to the loading of the css file,

Cheers,
Gregor