I noticed that on the animated title of Bravada’s landing page, special characters were being rendered as html code, not the character itself. Ergo, “&” was being animated and rendered as “&”.
I found that in the resources > js > frontend.js
, if you change var oldStr
from $location.html();
to $location.text();
, then the characters render ok.
I am a noob, so perhaps there are other computational implications why .html()
was used, but I wanted the special characters to render ok.
That’s my 2 cents worth
– Brian