Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kickstarter/jquery-clipster
https://github.com/kickstarter/jquery-clipster
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kickstarter/jquery-clipster
- Owner: kickstarter
- License: mit
- Created: 2014-06-10T19:18:02.000Z (over 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2014-08-26T18:12:08.000Z (about 10 years ago)
- Last Synced: 2024-04-24T16:04:04.088Z (7 months ago)
- Language: JavaScript
- Size: 419 KB
- Stars: 7
- Watchers: 135
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# Clipster
Copy without Flash
There is currently no way to place text onto a user's clipboard without
a plugin (normally Flash). Instead, this plugin creates an invisible input with the
text to target selected and then asks the user to press their 'copy' keyboard
shortcut.## [Examples](http://kickstarter.github.io/jquery-clipster/)
## Getting Started
```
bower install jquery-clipster
```or download the [production version][min] or the [development version][max].
[min]: https://raw.github.com/kickstarter/jquery-clipster/master/dist/clipster.min.js
[max]: https://raw.github.com/kickstarter/jquery-clipster/master/dist/clipster.jsIn your web page:
```html
copy user idjQuery(function($) {
$('a.clipster').clipster();
});```