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.

Possible Duplicate:
When to Use Double or Single Quotes in JavaScript

This is specifically for jQuery not JavaScript in general since I'm not a JavaScript programmer and I'm starting to learn jQuery.

With the release of jQuery 1.6 was there a specific change on using single or double quotes?

For example, would the following function work in jQuery 1.6?:

$('.selector').show();

Or do I have to use double quotes?:

$(".selector").show();

Thanks in advance for any clarification.

share|improve this question
1  
related to stackoverflow.com/questions/242813/… – MatTheCat Aug 11 '11 at 14:52
Ah! This is nice, thanks for the link. – Ricardo Aug 11 '11 at 15:01

marked as duplicate by Peter O., larsm, carlosfigueira, James Khoury, Phillip Schmidt Nov 26 '12 at 23:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 8 down vote accepted

JQuery Core Style Guidelines says:

"Strings should always use double-quotes instead of single-quotes."

share|improve this answer
Well, according to jQuery's own guidelines, this is right answer. However, something interesting to consider: With this test I get faster response with single quotes in Firefox 17.x (at the moment of typing this). But in Chrome, although different, the difference is really small... so small I consider it no-difference in using single vs. double quotes. Taken from this comment – Ricardo Nov 27 '12 at 3:40

You are allowed to use both. In JavaScript there is no difference between both (while e.g. in PHP there is a difference).

By the way, this is a JavaScript question. You are passing a string to the $() function, and strings have to be surrounded by ' or ".

share|improve this answer
No difference, got it. Thanks. – Ricardo Aug 11 '11 at 15:00

jQuery is JavaScript and as such emits the same behavior: Both behave the same, because both represent a string.

Is there any specific reason you think that jQuery 1.6 changed something here?

share|improve this answer
Yeah, we have this slideshow that's not working anymore, a developer changed the jQuery version call from 1.3.2 to 1.6 during troubleshooting and since I don't have access to the server, my only resource was asking. The script that handles the slideshow is using single quotes so I thought something had changed in 1.6. Nonetheless, your explanation is very helpful, at least for JavaScript n00b like me :) – Ricardo Aug 11 '11 at 15:00

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