Hello, I'm trying to do the following:
$('.1','.btn').show();
I want to make visible only the div's that have those two classes together like this:
<div class="1 btn">
I've tried doing it like this:
<div class="1.btn">
$('.1.btn').show();
and it does not work either: