We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I fetch an external xml feed with encoding iso-8859-1 with vanilla javascript, the characters all works fine.
But with this package, it will replace letters with apostrophe with question mark symbols. How can I change this?
const xhr = new XMLHttpRequest(); xhr.open('GET', url, true); xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest'); xhr.onreadystatechange = function() { if (this.readyState === 4 && this.status === 200) { console.log(this.responseText) } } xhr.send();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I fetch an external xml feed with encoding iso-8859-1 with vanilla javascript, the characters all works fine.
But with this package, it will replace letters with apostrophe with question mark symbols.
How can I change this?
The text was updated successfully, but these errors were encountered: