/fancyInput

Makes typing in input fields fun with CSS3 effects

Primary LanguageJavaScript

Fancy Input

Makes typing & deleting in input / Textarea fields exciting with CSS3 effects.

###Demonstration page here

Basic use example:

<!-- ...previous page content... -->
<div>
	<input type='text' >
</div>
<div>
	<textarea></textarea>
</div>
<!-- ...other page content... -->
<script>
    $('div :input').fancyInput();
</script>
<!-- You could also use any other way of getting
to the parent of the input/textarea, as long as you call .fancyInput(). -->

Call the .fancyInput() function on all parents of inputs. With this example code, you need to make sure every input is actually wrapped in a div.

This plugin does have any current plans to support any version of IE.