I\'ve got an app that runs fine locally, but barfs in production. (Classic problem, right?)
In production, the JS isn\'t firing correctly. When I open up the brows
I had a similar issue when trying to interpret JSON results. It turned out that somewhere along the line an odd character landed in the database - in this instance the culprit was "â??". It is not clear how this value arrived in the database, but it is likely related to HTML encoding issues - "Â" character showing up instead of " " Either way, after removing the odd characters, the problem was solved.