🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

inputizer is a minimalist jQuery inline editing plugin that turns an inline element into an editable input field.

In-place-Editing

Documentation

Inputizer

A simple, experimental jQuery plugin to turn any div or span into a pseudo text input. View a demo here.

###Usage

Include inputizer.css and inputizer.min.js.

Inputizer takes one argument: a callback function that is called on blur or when the return key is pressed. The content of the element is passed as an argument for the callback function.

<p>For my birthday, I want <span class="inputize-me">100</span> balloons.</p>  <script>   $('.inputize-me').inputizer(function(value) {     console.log('Wow, Joe wants ' + value + ' baloons for his birthday!');   }) </script>

You May Also Like