vote up 38 vote down star
83

HTML being the most widely used language (at least as a markup language) has not gotten its due credit.
Considering that it has been around for so many years, things like the FORM / INPUT controls have still remained same with no new controls added.

So at least from the existing features, do you know any that are not well known but very useful.

Of course, this question is along the lines of :

Hidden Features of JavaScript
Hidden Features of CSS
Hidden Features of C#
Hidden Features of VB.Net
Hidden Features of Java
Hidden Features of ASP.NET
Hidden Features of Python
Hidden Features of TextPad
Hidden Features of Eclipse

Do not mention features of HTML 5.0, since it is in Working Draft

Specify one feature per answer, please.

flag
1  
About HTML 5, wiki.whatwg.org/wiki/… and wiki.whatwg.org/wiki/… – cic Jun 7 at 10:52
7  
These "hidden features of xxx" questions must be nice easy ways of getting cheap rep points :) – skaffman Jun 16 at 11:59
5  
Community Wiki does not earn any reputation points :( – Binoj Antony Jun 16 at 13:49
6  
...who gets impressed by something like that? – Brandon Jun 22 at 17:48
5  
Personally, I like these questions, since they tend to feature "best practices" in the topic -- which I think is part of what an encyclopedia should be. Looking at the top three answers to this question, I learned two new things. – kdgregory Jul 8 at 13:01
show 2 more comments

35 Answers

prev 1 2
vote up 1 vote down

Special characters for math, greek,... not known very well

link|flag
7  
And not really needed in a world with UTF-8 – David Dorward Jun 5 at 8:49
2  
Not really needed, but I for one prefer π to π – Ant Jun 5 at 9:04
5  
I said UTF-8 not numeric character references. i.e. π – David Dorward Jun 5 at 9:12
show 3 more comments
vote up 22 vote down
<blink>

Must be used for anything important on the site. Most important sites wrap all of content in blink.

<marquee>

Creates a realistic scrolling effect, great for e-books etc.

Edit: Easy-up fellas, this was just an attempt at humour

link|flag
9  
What can I say? I did it for the lulz – Mark Glorie Jun 5 at 5:12
5  
Too much hate to laugh :p – Svish Jun 5 at 8:11
4  
That was brave of you. no points though – boris callens Jun 5 at 9:41
1  
blink is heavilty discouraged, unless you want to annoy users. Its support isn't perfect either. – CrazyJugglerDrummer Jun 10 at 1:23
11  
Perhaps the question ought to have specified that you shouldn't list features that we want to remain hidden. – Ben Blank Jun 22 at 18:52
show 7 more comments
vote up 12 vote down

I recently found out about the fieldset and label tags. As above, not hidden but useful for forms.

<fieldset> explanation

<fieldset> example

link|flag
1  
Explanation: w3schools.com/TAGS/tag_fieldset.asp -- Example: w3schools.com/TAGS/… – MatrixFrog Jun 5 at 7:36
1  
Didn't know about this one. Heres the W3c spec: w3.org/TR/html401/… – MitMaro Jul 3 at 14:34
show 2 more comments
vote up 5 vote down

Simplest way to refresh the page in X seconds - META Refresh

<meta http-equiv="refresh" content="600">

The value in content signifies the seconds after which you want the page to refresh.

link|flag
6  
Of course, working out which elements need refreshing and then updating them via AJAX results in a much nicer user experience... – Steve Harrison Jun 5 at 7:45
10  
META refresh doesn't really do anything good in pages where there's also some king of user form activity, because it can interrupt user's form fill-in and discard all the work. I think there's rarely an occasion where these kind of refreshes would be best. It's just the easy way out normally. – Robert Koritnik Jun 5 at 7:48
5  
/me hates pages that refresh like that... should be banned =/ – Svish Jun 5 at 8:09
1  
Upvoted. Cause i didn't know this one. :) – Arnis L. Jun 6 at 19:26
2  
This can also be useful if set to a little less than the session timeout to notify the user that his session has timed-out and was removed. – fforw Jun 21 at 21:33
show 6 more comments
vote up 13 vote down

The "!DOCTYPE" declaration. Don't think it's a hidden feature, but it seems it's not well known but very useful.

e.g.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
    "http://www.w3.org/TR/html4/strict.dtd">
link|flag
8  
And not to mention "mandatory for most current markup languages and without one it is impossible to reliably validate a document"... validator.w3.org/docs/help.html#faq-doctype/… – Svish Jun 5 at 8:06
1  
And using a strict doctype fixes 95% of browser inconsistencies. – DisgruntledGoat Jul 10 at 12:11
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

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