What is jQlipboard?

jQlipboard is an extension for jQuery. It makes performing clipboard actions much easier. jQlipboard is been designed to be compatible across most modern browsers.

Powered by jQuery

A Brief Look

Copying

Copy the contents of an input field in one line.

1
$( "input#field" ).copy()

Selecting/Deselecting

Select an entire element.

1
2
3
$( "#paragraph" ).select();

$.deselect();

Pasting

Paste clipboard contents into a textarea.

1
$( "textarea" ).paste()