Comment on A technique for hiding your JavaScript codeparentComments−snowwrestler14yThey do very different things. View source will show the document as delivered to the browser; developer tools show the page as rendered. You really need both.−MatthewPhillips14yThe former already exists in your browser's Network panel of the developer tools. It's the response for /Foo from the server.It should be demoted from "View Source" though; how the DOM got into its current state is not that important; only the current state really matters.
Comments
They do very different things. View source will show the document as delivered to the browser; developer tools show the page as rendered. You really need both.
The former already exists in your browser's Network panel of the developer tools. It's the response for /Foo from the server.
It should be demoted from "View Source" though; how the DOM got into its current state is not that important; only the current state really matters.