Home › Forums › Other › Don't allow user to copy CSS, JS, JQuery and Content › Reply To: Don't allow user to copy CSS, JS, JQuery and Content
July 5, 2016 at 6:52 am
#243388
Participant
You can’t. For someone to view your website in their browser, the server has to send everything used on the page to the client. At that point, they have everything and can do whatever they want with it. You can’t stop them.
All you can do is not send anything sensitive to the client, keep all that on the server (PHP, for example). You can make it difficult to read, but that won’t actually stop anyone, just slow them down.