[jQuery] Re: " vs '

2007-07-26 Thread Klaus Hartl
Stephan Beal wrote: On Jul 26, 6:37 pm, "Mitchell Waite" <[EMAIL PROTECTED]> wrote: This going will make me sound really dumb but what is the difference between using single quote versus double quotes in jQuery, e.g. Mitchel, PLEASE don't hijack other people's threads to post a question. Star

[jQuery] Re: " vs '

2007-07-26 Thread Mitchell Waite
AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: " vs ' On 7/26/07, Mitchell Waite <[EMAIL PROTECTED]> wrote: > This going will make me sound really dumb but what is the difference between > using single quote versus double quotes in jQuery, e.g. Mitchell, th

[jQuery] Re: " vs '

2007-07-26 Thread Stephan Beal
On Jul 26, 6:37 pm, "Mitchell Waite" <[EMAIL PROTECTED]> wrote: > This going will make me sound really dumb but what is the difference between > using single quote versus double quotes in jQuery, e.g. Mitchel, PLEASE don't hijack other people's threads to post a question. Start a new thread! Thre

[jQuery] Re: " vs '

2007-07-26 Thread Rob Desbois
Sean, Attributes in (X)HTML don't need to be double-quoted, again single-quotes are equally valid there so '' and "" are effectively the same and both valid. I know you probably know, I just wanted to rephrase "It is easier to type an html string if you use single quotes:" in case :-) --rob On

[jQuery] Re: " vs '

2007-07-26 Thread Aaron Heimlich
For that code...absolutely nothing (that I can recall off-hand, anyway). However, there is something you should be aware of: If you want to use a ' within a string that is delimited by 's, then you have to escape it, like so: 'Mitchell\'s code' The same goes for ": "Aaron shouted \"jQuery rock

[jQuery] Re: " vs '

2007-07-26 Thread Sean Catchpole
On 7/26/07, Mitchell Waite <[EMAIL PROTECTED]> wrote: > This going will make me sound really dumb but what is the difference between > using single quote versus double quotes in jQuery, e.g. Mitchell, the concept of single vs double quotes is more of a javascript question. The simple answer is tha