jQuery Plugin for Inline Editable Text Field - inlineeditableform

File Size: 4.96KB
Views Total: 1584
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin for Inline Editable Text Field - inlineeditableform

inlineeditableform is a lightweight and useful jQuery plugin which makes the text fileds of your page editable. It turns text areas into editable fields so that your user can edit each of these text fields on one page.

How to use it:

1. Include jQuery library and jQuery inlineeditableform on the page

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery.ief.js"></script>

2. Markup

<span id="address" class="ief" data-ief-edittype="textarea">
...
</span>

3. Call the plugin

<script>
$(document).ready(function() {
$('.ief').ief();
});
</script>

This awesome jQuery plugin is developed by shahraship. For more Advanced Usages, please check the demo page or visit the official website.