Xontent ======= [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/herby/xontent?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 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. `