How To Hide A Ajax Request From Web Browser's Console
The Browser's web console Network Tab shows all the ajax request with the server response. How Can I prevent ? is it possible to do ? The reason is because the ajax response shows
Solution 1:
It's not possible and even if it was, it would be an undesirable "solution" because the data can be seen using other methods.
The solution is to revise your code to ensure you only send data to the user that they are authorised to see. Don't dump all user data in the AJAX response.
Post a Comment for "How To Hide A Ajax Request From Web Browser's Console"