0

Can we disable java-script debugging of a project after hosting on IIS server, so user can not debug the java-script code with inspection.

Or can we hide our .js source files in browser?

1 Answer 1

1

It is not possible to prevent the Developer Tools for your end users. But a little solution , you can prevent right-click to inspect element.

document.addEventListener('contextmenu', function(e) {
e.preventDefault();
});
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.