You'll have to make this selection in several steps. You could use $('[class="a b c"]')
but you can have these classes in different order.
So if you do as you wrote $('.a.b.c')
you will select elements that have at least these three classes. To exclude others who have even more classes you can do this:
var seletor = '.a.b.c';
var selecionados = $(seletor).filter(function (el) {
var classes = seletor.split('.').filter(Boolean);
return this.className.split(' ').filter(function (classe) {
return classes.indexOf(classe) == -1;
}).length == 0;
});
selecionados.html('eu!!');
jsFiddle: link