<div class="content-wrapper">
<p>Pure for jQuery is a JavaScript/jQuery plugin library to enhance native browser elements.</p>
<h1>Input 1.0. Examples</h1>
<p> A basic input with a hint and a max character length, using the predefined value. </p>
<input type="text" class="input __simple" name="simple" value="I have value in this world." />
<p> The Input plugin <strong>:Validator</strong> allows you to validate an input as many ways as you like, by passing an array of "filters" or conditional methods. </p>
<input type="text" class="input __validate" name="validate" />
<p> An Input instance with <em><strong>autogrow</strong></em> set to true. It will grow in width and height until it reaches its max height. Then it will have a scrollbar.</p>
<input type="text" class="input __growable" name="growable" />
<p> The Input plugin <strong>:Autocomplete</strong> allows you to search synchronous and asynchronous sources, building a navigable list of results as you type.</p>
<input type="text" class="input __autocomplete" name="autocomplete" title="Search on Facebook" />
<p>Below is an Input with Autocomplete and the <strong>:Tokenizer</strong> plugin. This is a navigable list of tokens that reside within the input.</p>
<input type="text" class="input __tokenizer" name="tokenizer" title="Search for a superhero" />
<p><strong>:Mentions</strong> is an Input plugin allowing you to tag items to a paragraph</p>
<input type="text" class="input __mentions" name="mentions" />
</div>