Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amiryxe/jquery-appender
Simple jQuery plugin for initial and append anything
https://github.com/amiryxe/jquery-appender
append appender javascript jquery plugin row
Last synced: 3 months ago
JSON representation
Simple jQuery plugin for initial and append anything
- Host: GitHub
- URL: https://github.com/amiryxe/jquery-appender
- Owner: amiryxe
- License: gpl-3.0
- Created: 2019-06-18T14:51:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T06:34:20.000Z (about 2 years ago)
- Last Synced: 2023-03-05T03:08:46.992Z (almost 2 years ago)
- Topics: append, appender, javascript, jquery, plugin, row
- Language: HTML
- Homepage: https://amiryxe.github.io/jquery-appender/
- Size: 59.6 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jQuery Appender
Simple jQuery plugin for initial and appending anything.### How to use Appender
1. Include jQuery in your project:
```html```
2. Add **jQuery Appender** plugin to your project:
```html```
3. Initial:
```javascript
$("#appendHere").appender({
rowSection: '.row_container',
addBtn: '.add-new-item',
appendEffect: 'fade',
addClass: 'animated bounceInLeft',
rowNumber: '.row-number',
deleteBtn: '.delete-btn',
hideSection: true
});
```