Possible Duplicate:
When to Use Double or Single Quotes in JavaScript
Difference between single quotes and double quotes in Javascript
When I started learning jQuery, I frequently found examples using single quote or double quote as jQuery selector:
$('#myDiv');
or $("#myDiv");
They are basically the same. But which one is used prefer and fast execute please let me know.