This sounds a bit like a trivia question, but it would help me figure out my options solving an actual problem. Is there an HTML tag that can be used anywhere in the DOM? (something to be used as a placeholder) An HTML5 tag would be ok. No XHTML unfortunately.
I've thought about it for a bit, the only tag I can come up with is <script/>
. Otherwise, I guess that <span/>
would work almost(?) anywhere in <body/>
and <meta/>
would work in <head/>
. Any other idea? I haven't thoroughly checked HTML5, so perhaps I'm missing a newer addition.
Also, please don't overthink this and try to reverse-engineer my question. Using a tag as placeholder is one of many different options that I'm examining, that's all. Thanks!