Is it possible to hide the Javascript code from the html of a webpage, when the source code is viewed through the browsers View Source feature?
I know it is possibl
You could use document.write.
document.write
Without jQuery
Or with jQuery
$(function () { document.write("You cannot find this in the page source. (Your page needs to be in this document.write argument.)") });
You cannot find this in the page source. (Your page needs to be in this document.write argument.)