Is there any way to get hasClass() to look for any of multiple classes? I see people doing things like
if( ($(e.target).hasClass('box')) ||
($(e.target).hasClass('imgBox')) ){
which would be much cleaner with something like
if( ($(e.target).hasClass('box imgBox')
Thanks