views:

275

answers:

1

Hi all,
How do I go about tracking this warning? I know about where to look, but what exactly am I looking for ... does this mean "classname" instead of ".classname" for some selector?

Thanks,
Michael

+1  A: 

It sounds like you've got a selector something like this:

$(":.blah")

or

$("div:.blah")

Namely, a period after the colon.

Or possibly two periods in a row.

cletus