Hi,
If you use tagfield and receive data with special characters from DB then jquery.tags.js will return the html entities. Is there a way to stop that? How can i get the UTF-8 Text from my DB field to the inner HTML input field? I have tried a .replace on line 126 jquery.tags.js but without success.
How can i get back a plain "&"???
for (i = 0; i < matches.length; i++) {
html += '<' + settings.tagWrap + ' class="_tag_suggestion">' + matches + '</' + settings.tagWrap + '>';
}
Can anybody help?