I read a couple of answer about a similar question and people always say that there is no difference between a single and a double quote. The problem is I have a little line of code that somehow seem to matter...
$("li[data-type|='veg']").append(' (v)');
this code do what I want him to do: put a (v) at the end of the link but this code:
$("li[data-type|="veg"]").append(' (v)');
does not work. Why? Does it have to do with the browser? I'm new to jquery and it's the first time I see the type of quote making a difference.
Thanks