Like to know if the code/content/comments I put inside “Page Code” are visible to end users like normal “Javascrip” in other HTML pages if users click on “view source”?
If it’s yes, I would then have to move some of the code to backend. Thanks
Hi,
The short answer is yes - the page code is visible. That doesn’t mean that the code is easly understood since the code undegoes a serious massage before actually being used on the page.
If you have sensitive information (API keys, secret codes, etc) or proprietary algorithms (the secret of life, how to get free beer, etc) that you want to protect, then it would be best to “bury” this stuff in the backend. This will keep your code server-side and away from prying eyes.
I hope this helps.
Yisrael