Skip to content

Instantly share code, notes, and snippets.

@endtwist
Created January 18, 2012 04:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save endtwist/1630899 to your computer and use it in GitHub Desktop.
Save endtwist/1630899 to your computer and use it in GitHub Desktop.
Paste event in Internet Explorer
// We need a textarea for IE, too: <textarea id="pasteField"></textarea>
$( '#pasteField' ).bind( 'paste', function( evt ) {
// In true Microsoft form, the type to get plain text is Text with a captial T.
console.log( window.clipboardData.getData( 'Text' ) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment