Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kickstarter/jquery-clipster


https://github.com/kickstarter/jquery-clipster

Last synced: about 2 months ago
JSON representation

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.js

In your web page:

```html
copy user id

jQuery(function($) {
$('a.clipster').clipster();
});

```