Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can Google Chrome show HTML errors (e.g. unclosed tags)? If so, how does one do it?

Thanks

share|improve this question
I use IE9 for this. =( It shows it beautifully in the console. Kinda weird Chrome doesn't. – Rudie Mar 16 at 13:45

5 Answers

up vote 2 down vote accepted

Use HTML Validator extension.

https://chrome.google.com/extensions/detail/cgndfbhngibokieehnjhbjkkhbfmhojo

share|improve this answer

The built-in "Developer Tools" can show HTML errors itself. In the bottom right corner of the Developer Tools window, there's a tiny red circle with an X in it and the number of errors on the page.

Also, you can just click the "show console." button and above the prompt, the errors are printed.

A third way inside Developer Tools is to go to Resources, Enable Instrumentation, and next to any request with errors is a red circle with a number inside. That number is the number of errors. If you scroll around inside the preview window on the right side, there are big shiny red bubbles with descriptions of each of the errors.

share|improve this answer
These are only JS errors and content-type warnings etc these days? No more built-in HTML warnings? – Rudie Mar 16 at 13:41

I'm not sure it can do exactly what you're after without an extension. You can use the developer tools to explore the HTML to see if it is what you expect/intend, but I don't think it will tell you where there are errors.

HTML browsers are designed to be able to taken invalid markup and render it as best they can. It will have a very high tolerance for errors.

You may want to try an extension like one of these.

share|improve this answer

Top right of Chrome

> Paper Icon > Developer > Developer tools

or use

CTRL + SHIFT + i

keyboard shortcut

View Developer tools console for errors

share|improve this answer
That doesn't really answer his question. That will show you the source, but not validate it. – Josh Feb 8 '10 at 19:12
Should I add "View console for error"? – Yada Feb 8 '10 at 19:16
2  
Developer tools do not seem to show HTML errors. – Brian M. Hunt Feb 8 '10 at 21:41

There is a new HTML5 validator for based on libTidy (same as the firefox version)

https://chrome.google.com/webstore/detail/anjdemaoejlpgmnmkijdemoiebcddhkc

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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