Top "Standards" questions

Standards are officially published or well agreed upon formats, procedures, or protocols.

How is the default submit button on an HTML form determined?

If a form is submitted but not by any specific button, such as by pressing Enter using HTMLFormElement.submit() in …

javascript html cross-browser standards
What is the standard naming convention for html/css ids and classes?

Does it depend on the platform you are using, or is there a common convention that most developers suggest/follow? …

html css naming-conventions standards
Are iframes considered 'bad practice'?

Somewhere along the line I picked up the notion that using iframes is 'bad practice'. Is this true? What are …

html iframe standards
Spaces in URLs?

w3fools claims that URLs can contain spaces: http://w3fools.com/#html_urlencode Is this true? How can a …

http url standards
Why aren't variable-length arrays part of the C++ standard?

I haven't used C very much in the last few years. When I read this question today I came across …

c++ arrays standards variable-length-array variable-length
Is an anchor tag without the href attribute safe?

Is it okay to use an anchor tag without including the href attribute, and instead using a JavaScript click event …

html hyperlink standards anchor
Can (domain name) subdomains have an underscore "_" in it?

Can subdomains (domain names) have underscore _ in them?

dns subdomain standards
Where do I find the current C or C++ standard documents?

For many questions the answer seems to be found in "the standard". However, where do we find that? Preferably online. …

c++ c standards c++-faq
What's the difference between __PRETTY_FUNCTION__, __FUNCTION__, __func__?

What's the difference between __PRETTY_FUNCTION__, __FUNCTION__, __func__, and where are they documented? How do I decide which one to …

c++ c compiler-construction standards
How to determine the version of the C++ standard used by the compiler?

How do you determine what version of the C++ standard is implemented by your compiler? As far as I know, …

c++ standards