Minimal Inline Editing Plugin For jQuery - inputizer

File Size: 6.33 KB
Views Total: 893
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Minimal Inline Editing Plugin For jQuery - inputizer

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

How to use it:

1. Load the inputizer.css stylesheet for the primary styles.

<link rel="stylesheet" href="path/to/inputizer.css">

2. Load jQuery library and the jQuery inputizer plugin's script at the bottom of the webpage.

<script src="path/to/jquery.min.js"></script>
<script src="path/to/inputizer.js"></script>

3. Call the function on the target element to make it editable.

$('.inputize-me').inputizer(function(value) {
  console.log(value);
});

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