Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Recently I've been seeing a lot of this:

<a href='http://widget-site-example.com/example.html'>
    <img src='http://widget-site-example.com/ross.jpg' alt='Ross&#39;s Widget' />
</a>

Is it even valid to use single quotes in HTML? As I've highlighted above it's also problematic because you have to escape apostrophes.

share|improve this question
4  
The alt attribute should have &apos; in it, not \' – Greg Oct 28 '08 at 10:33
8  
@Greg: "The single-quote character ('), when used to quote an attribute value, must also be escaped as &#x27; or &#39; (should NOT be escaped as &apos; except in XHTML documents) when it appears within the attribute value itself." – aehlke Aug 20 '09 at 15:38
67  
Bandwidth is important when it comes to websites. And single quotes are half as wide as double quotes, which saves lots of bandwidth over time. Because the internet is a series of tubes, not like a truck, and you gotta cram all those double quotes into those tubes they can get clogged up. Single ones slip down easier. – Will Jul 27 '10 at 18:47
8  
Just in case people think @Will was serious when he said that "single quotes are half as wide as double quotes, which saves lots of bandwidth over time", implying that double quotes are larger than single quotes, I'd just like to clarify that double quotes and single quotes are the same size in bytes. – David Murdoch Mar 10 '11 at 14:09
10  
@David SSSSSH!!! – Will Mar 10 '11 at 14:39
show 4 more comments

11 Answers

up vote 21 down vote accepted

It's certainly valid to use single quotes (HTML 4.01, section 3.2.2). I haven't noticed such a trend, but perhaps there's some framework that powers web sites you've visited that happens to quote using single quotes.

share|improve this answer
Funnily enough it's mainly sites that give external code out - for example a stats image for Ohloh or as in pushuptheweb.com – Ross Oct 28 '08 at 10:25
1  
HTML, not XHTML though – Joe Philllips Jan 14 '09 at 19:05
2  
Single quotes are the default in HAML (haml-lang.com). – brad Jan 11 '10 at 19:21
Google Font Library is now providing sample code with single quotes: google.com/webfonts – Simon Dec 13 '11 at 23:03

I find using single quotes is handy when dynamically generating HTML using a programming language that uses double quote string literals.

e.g.

String.Format("<a href='{0}'>{1}</a>", Url, Desc)
share|improve this answer
3  
What? You dont like String.Format("<a href=" & ControlChars.Quote & "{0}" & ControlChars.Quote & ">{1}</a>", Url, Desc) ??? =P – StingyJack Nov 7 '08 at 20:56
String.Format(@"<a href=""{0}"">{1}</a>", Url, Desc) this is what you might consider :) – Cshift3iLike Jan 3 '09 at 12:50
4  
or String.Format("<a href=\"{0}\">{1}</a>", Url, Desc) – rizzle Jan 14 '09 at 18:55
4  
3 perfect examples of extreme ugliness :) – ThiefMaster Dec 16 '11 at 2:10

When using PHP to generate HTML it can be easier to do something like:

$html = "<img src='$url' />";

than concatenating a string with a variable with a string, as PHP parses variables in double-quoted strings.

share|improve this answer
It's also easier than staring at $html = "<img src=\"{$url}\" />"; As escaped quotes are all to easy to forget – Sekhat Oct 28 '08 at 11:08
3  
actually you can reverse it in php as well: $html = '<img src="$url" />'; – Kevin Laity Jan 7 '11 at 18:46
6  
@KevinLaity, using single quotes in PHP would make $url print out as $url, not the variable contents: php.net/manual/en/language.types.string.php – bradlis7 Nov 10 '11 at 16:56
alternatives don't make it more readable either: $html = '<img src="'.$url.'" />' – Ragnagord Jan 24 at 9:16

It's easier when you want to embed double quotes.

share|improve this answer
Same applies if you completely reverse the scenario... so not a good reason IMO – Joe Philllips Jan 14 '09 at 18:59

In ASP.NET, it's easier to use single quotes if you're using data-binding expressions in attributes:

<asp:TextBox runat="server" Text='<%# Bind("Name") %>' />
share|improve this answer

Someone may use it in PHP to avoid escaping " if they're using double quoted string to parse variables within it, or to avoid using string concatenation operator.

Example:

echo "<input type='text' value='$data'/>";

instead of

echo "<input type=\"text\" value=\"$data\" />";

or

echo '<input type="text" value="' . $data . '" />';

Nowadays I always stick to using double quotes for HTML and single quotes for Javascript.

share|improve this answer

In PHP, echo takes multiples parameters. So, if one would like to omit the concatenation operator, they could done something like and still use double quotes :

echo '<input type="text" value="', $data, '" />';
share|improve this answer

What's against single quotes?

You can have single/double quotes all over your html code without any problem, as long as you keep the same quoting style inside a current tags ( many browser won't complain even about this, and validation just want that if you start with a quote, end with the same, inside the same propriety )

Free support to random quoting styles!!! (yay ;D )

share|improve this answer

Single quotes are perfectly legal in (X)HTML. Using a backslash to escape them, on the other hand, isn't. <img src='http://widget-site-example.com/ross.jpg' alt='Ross\'s Widget' /> is an image with the alt text "Ross\", and empty s and Widget/Widget' attributes. The correct way of escaping an apostrophe in HTML is &#39;.

share|improve this answer
1  
Single quotes are not perfectly legal in XHTML. – Joe Philllips Jan 14 '09 at 19:11
2  
Single quotes are legal XHTML, aren't they? – Bennett McElwee Jan 18 '10 at 3:53
d03boy: that's incorrect. – Ms2ger Jan 18 '10 at 19:15

Single quotes generate a cleaner page with less clutter. You shouldn't be escaping them in HTML strings and it's your choice which to use... my preference is single quotes normally and if I need to include a single quote in the string (e.g. as delimiters for a string inside the string), I use double quotes for one & single for the other.

share|improve this answer

I know this is an old thread, but still very much relevant.

If you want control over quotes in your generated HTML, you can use the sprintf() function in PHP (and similar calls available in many other languages):

$html = sprintf('<a href="%s">%s</a>', $url, $text);

Using sprintf() allows the format string to be easily modifiable by retrieving it from a database or configuration file, or via translation mechanisms.

It is very readable, and allows either double or single quotes in the generated HTML, with very little change and never any escaping:

$html = sprintf("<a href='%s'>%s</a>", $url, $text);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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