🇮🇳India @dharmendraqed42

Account created on 22 September 2023, 9 months ago
#

Recent comments

🇮🇳India dharmendraqed42

I got an error that said, 'Uncaught DOMException: Failed to execute 'remove' on 'DOMTokenList': The token provided ('not available') contains HTML space characters, which are not valid in tokens.'

I fixed it by changing this part of the code in yoast_seo.js file:

Before:
scoreDisplay.classList.remove(scoreLabel.innerHTML.toLowerCase());
scoreDisplay.classList.add(newLabelText.toLowerCase());

After:
scoreDisplay.classList.remove(scoreLabel.innerHTML.toLowerCase().replace(' ', '-'));
scoreDisplay.classList.add(newLabelText.toLowerCase().replace(' ', '-'));

This change fixed the problem.

Production build 0.69.0 2024