The following Jsoup statement works:
Elements divs = document.select("div[class=mncls sbucls]");
But the equivalent statment:
Elements divs = document.select("div.mncls sbucls");
Doesn't work.
Why?
Does Jsoup have a problem with class names that have spaces?