# jquery-qeditor
**Repository Path**: mirrors_fis-components/jquery-qeditor
## Basic Information
- **Project Name**: jquery-qeditor
- **Description**: Fork from https://github.com/huacnlee/jquery.qeditor
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2026-08-01
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
jquery.qeditor
==============
This is a simple WYSIWYG editor with jQuery.
[中文介绍请点这里](http://huacnlee.com/blog/jquery-qeditor-introduction/)
## Featrues
- Simple UI, Simple Use;
- Use font-awsome as toolbar icon;
- Remove complex html tag, attributes on paste, this can make you web page clean;
- Less code;
- Use `
` not `
` on press `Enter`, This can help you make a neat layout;
- PlaceHolder for WYSIWYG editor;
- FullScreen;
## Browser support
- Safari
- Chrome
- Firefox
- IE (No test), maybe 8+
## Demo
You can try the [Demo app](http://huacnlee.github.io/jquery.qeditor).
## Usage
```html
```
## How to add custom toolbar icon
```js
// Custom a toolbar icon
var toolbar = $("#post_body").parent().find(".qeditor_toolbar");
var link = $("");
link.click(function(){
alert("Put you custom toolbar event in here.");
return false;
});
toolbar.append(link);
```
## Build
```
$ bundle install
$ rake watch # or use "rake build" to release
```
## License
Apache V2 : http://choosealicense.com/licenses/apache