I heard somewhere that its better to write this:
$(document).ready(function() {
$('a').append('<strong>Hello</strong>');
});
instead of this:
$(document).ready(function() {
$("a").append("<strong>Hello</strong>");
});
But the last one, is the way that its written in the official documentation of jQuery.
So which gives more problems when the code gets larger? single (') or double (") quotation? or its irrelevant?