I'm trying to replace all occurences of '$' (dollar sign) in a web page with another string.
The problem is that there may be some <script>
tags that may contain the '$' (jQuery code) that I don't want to change.
For example:
document.body.innerHTML = document.body.innerHTML.replace(/\$/g, 'xxx');
seems to work, but also replaces '$' from any <script>$('...')...</script>
parts.
Is this achievable?
Thank you in advance.
EDIT: I cannot modify the way the page is generated or change all other js parts - neither use some server-side logic. I can only add some custom js code