1

Google Chrome's inspect element seems to force all tags to be lower case. Is there a way to disable that behavior so that the tag appears as it is written?

Jimbo
  • 2,886
  • 2
  • 29
  • 45

1 Answers1

0

In HTML, tags are non case specific, so even though <p>Hello.</P> wouldn't work in XML, it's fine in HTML.

Using an XHTML DOCTYPE might fix it though. I haven't tested it though.

Out of curiosity, why do you want this behavior?

McKayla
  • 6,879
  • 5
  • 36
  • 48
  • I am parsing someone's code to do my own automatic form submission. In some cases it is easier to do an exact match. Probably more appropriate is to use case-insensitive regular expressions and string comparisons. I was just curious if that was an option I was missing. – Jimbo May 23 '11 at 12:58