Skip to content

Instantly share code, notes, and snippets.

@bruce965
Created September 4, 2014 18:31
Show Gist options
  • Save bruce965/54d7467b25a64ead80ae to your computer and use it in GitHub Desktop.
Save bruce965/54d7467b25a64ead80ae to your computer and use it in GitHub Desktop.
W3C Validator Bookmarklet
javascript:(function(){var%20form=document.createElement("form");form.style.display='none';form.setAttribute("method","post");form.setAttribute("action","http://validator.w3.org/check");var%20hiddenField=document.createElement("input");hiddenField.setAttribute("name","fragment");hiddenField.setAttribute("value",'<!DOCTYPE%20'+document.doctype.name+(document.doctype.publicId?'%20PUBLIC%20"'+document.doctype.publicId+'"':'')+(!document.doctype.publicId&&document.doctype.systemId?'%20SYSTEM':'')+(document.doctype.systemId?'%20"'+document.doctype.systemId+'"':'')+'>\n'+document.documentElement.outerHTML);form.appendChild(hiddenField);document.body.appendChild(form);form.submit();})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment