Example usage for org.jsoup.select Elements html

List of usage examples for org.jsoup.select Elements html

Introduction

In this page you can find the example usage for org.jsoup.select Elements html.

Prototype

public String html() 

Source Link

Document

Get the combined inner HTML of all matched elements.

Usage

From source file:org.thorn.emma.model.Html.java

public String fetchHtml(String selector) {
    Elements elements = this.document.select(selector);
    return elements.html();
}