Ok first off let me state that I know I should never do this under any circumstances for a real site. Ok. That's out of the way.

One of my coworkers was going off that Javascript is not a "real" programming language (his definition of "real" seems to be "it compiles"), because it depends on other languages to do its thing.

I told him I could write a website using nothing but javascript.

I am sure that this can be done, using document.write('') to get the doctype, and some script to create a dom and styles... but the problem is since the page is validated without JS, it can't show him that what the browser is looking at does in fact validate.

Anyone know of a way I can validate the actual source the browser is using instead of the javascript that initially loaded?

link|improve this question

As you're aiming for a website and not a webpage, I'd use Node.js/express on the serverside. That lets you write the backend in javascript. Then you can also generate your html there, using one of the many template-engines around. When you've succesfully installed node, github.com/robrighter/node-boilerplate should put you on the right track. If you opt for using coffeescript you also get something that compiles into javascript. Let your coworker chew on that :) – ivarni Sep 26 '11 at 18:08
"because it depends on other languages to do its thing" — So the only "real" programming language is writing machine code by hand? – Quentin Sep 26 '11 at 18:09
Quentin, that's what I said! That's when he came up with his whole "well it compiles to machine code" thing. Seems to me we could, if we really wanted to, write a javascript compiler (probably even write it in JS)... – Chris Sobolewski Sep 26 '11 at 18:13
feedback

3 Answers

up vote 1 down vote accepted

If you really want to demonstrate that JS is a "real" language, then you would probably be better off not using a browser as the foundation. A node.js server would allow you to generate an HTML document (using document.write if you like, but DOM is an option (and people have used client side libraries to manipulate a document in node.

Since the JS runs on the server, you can get the actual source from the browser via view-source or point the validator directly at the URI (so long as it is either public or you install a local copy of the validator)

link|improve this answer
This is very neat. Thank you. – Chris Sobolewski Sep 29 '11 at 20:27
feedback

Load the site in Firefox with Firebug installed. Fire up the "HTML" view and rightclick on the <html> node and select "copy HTML".

link|improve this answer
feedback

The closest you get using JavaScript:

var generatedHTML = document.documentElement.innerHTML;
//Retrieves everything within the (missing)HTML tags.
//The only missing parts are DOCTYPE and the <html> itself

var txt = document.createElement("textarea");
txt.style.cssText = "width:99%;height:99%;position:fixed;z-index:999;top:0;left:0";
txt.value = generatedHTML;
txt.ondblclick = function(){this.parentNode.removeChild(this)};
//Adding a simple function to easily remove the textarea once finished

document.body.appendChild(txt);

Bookmarklet (I have slightly adjusted the code to be compact):

javascript:void(function(){var t=document.createElement("textarea");t.style.cssText = "width:99%;height:99%;position:fixed;z-index:999;top:0;left:0";t.value=document.documentElement.innerHTML;txt.ondblclick=function(){t.parentNode.removeChild(t)};document.body.appendChild(t)})()
  1. Focus the generated textarea
  2. Manually add the DOCTYPE + <html> tags
  3. Copy the contents of the textarea to the validator at: http://validator.w3.org/#validate-by-input
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.