Class names cannot contain spaces. Therefore, you should think of it as two class names.
For example: class="word1 word2"
It can be selected with the following:
var myVar = $('.word1.word2');
In your specific case, it will be:
$('.rcbScroll.rcbWidth.rcbNoWrap').hide();
source share