Forum Moderators: open

Message Too Old, No Replies

Faq

which way is preferred?

         

fashezee

7:13 pm on Mar 6, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



faq
f.a.q.
FAQ
F.A.Q.
or
Frequently Asked Questions

What is the preferred method?

DrDoc

7:27 pm on Mar 6, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Since it's an acronym the letters should be capitalized. However, FAQ and F.A.Q. are both correct, technically. It's more common with just FAQ though..

(think about other acronyms, such as NATO, UN, NASA, USA, EU)

Harley_m

7:02 pm on Mar 7, 2003 (gmt 0)

10+ Year Member



I would personally use just FAQ - but the capitals are a must...

hope that helps

Harley

sem4u

7:42 pm on Mar 7, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I would use FAQ or F.A.Q. but also add 'Frequently Asked Questions' as some people won't know what it means.

drnoble

5:48 pm on Mar 9, 2003 (gmt 0)

10+ Year Member



as sem4u said,

FAQ or F.A.Q. with the full text somewhere, preferably as an abbreviation, ie <abbr title="Frequently Asked Questions">FAQ</abbr>

however... Internet Exploiter does not support the abbr tag[1] so you might want to use acronym.

[1] there is a javascript hack that can be used to get IE to mimick support. [sovavsiti.cz...]

dhdweb

5:59 pm on Mar 9, 2003 (gmt 0)

10+ Year Member



IE does support the title attribute!

<a href="faq.htm" title="Frequently Asked Questions">FAQ</a>

Frequently Asked Questions will appear in a tool tip box when the mouse is over the link.

dhdweb

<edit reason>My brain works faster than I can type!</edit>

drnoble

8:18 pm on Mar 9, 2003 (gmt 0)

10+ Year Member



IE does support the title attribute *on certain elements*

It supports the title on <acronym> <a> and others, BUT NOT ON <abbr>

if you put <abbr title="Webmaster World">WW</abbr>
internet explorer *will not* show this title, if you incorrectly[1] put <acronym title="Webmaster World">WW</acronym> IE *will* show the title.

[1] incorrectly as and acronym is "A word formed from the initial letters of a name" (dictionary.com)

RFranzen

11:40 am on Mar 15, 2003 (gmt 0)

10+ Year Member



A workaround to IE not supporting the title attribute in <abbr> is to use <span>. Example:

<span title="percent of goal">%g</span>

(Tested on IE v6.02.)

-- Rich