Xontent ======= HTML templates - capture children or siblings into a document fragment and get it back later. Quick use ---- Suppose you have this HTML: ```html
foo bar baz
``` When you call `$('#foo').xontent()` first time, the contents of the div is removed, inserted into `DocumentFragment` and this `DocumentFragment` is return wrapped in jQuery object. All subsequent calls to `$('#foo').xontent()` will return that same `DocumentFragment` inside a jQuery object. `