can I find 2 classes in same html-tag/html-container without using a foreach ?
I was thinking of something like this, to find out whether the same child has 2 classes:
$(".btnUploadWrapper").children().hasClass("postFileSuccess").hasClass("hidden")
or
$(".btnUploadWrapper").children().hasClass("postFileSuccess hidden")
Is it possible ?