Skip to content

is-editable is a small MooTools plugin to to create in place editing fields.

Notifications You must be signed in to change notification settings

isfeng/is-editable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

is-editable

is-editable is a small MooTools plugin to to create in place editing fields.

How to Use

Snippet code Javascript:

#JS

$("test01").makeEditable({
	type: 'text',
	onBeforeEdit: function(){
		
	},
	onComplete: function(){
		
	}
});

$("test02").makeEditable({
	type: 'textarea',
	onBeforeEdit: function(){
		
	},
	onComplete: function(){
		
	}
});

Snippet code HTML:

#HTML

<p id="test01">double click</p>

<p id="test02" style="width:200px; border: 1px solid black">
	long long long long long long long long long long long long long long long long long long long long long text
</p>

About

is-editable is a small MooTools plugin to to create in place editing fields.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published