I just discovered that setting the baseUri is necessary for each Element you get by doing a select. It would be a lot better if the baseUri of the Document is applied to each Element.
Document d = Jsoup.parse(myString);
doc.setBaseUri("http://www.google.de");
If I execute
Element e = d.select(....).get(0);
The baseUri of e is empty.
Is this a bug or is it intended?