Facebook's status update input (well, contenteditable div) detects links.

When typing a link it waits until the spacebar is pressed before fetching the URL.

When pasting a link it fetches the URL instantly.

I can already parse the url after the spacebar is pressed...but I'm not sure about detecting when content is pasted.

Any solution would be awesome; a jQuery formatted solution will be BEST!

link|improve this question

80% accept rate
feedback

8 Answers

up vote 9 down vote accepted

Modern day browsers support onpaste

link|improve this answer
1  
it's so obvious... why is everyone else overcomplicating this in their answers? – Andy E Dec 12 '09 at 1:49
My gosh I feel like an idiot now. msdn says its been there since version 5! Thanks, I'm away from my dev machine but I'll let you know how well it works. Thanks for the obvious! – David Murdoch Dec 12 '09 at 4:39
1  
however, the onpaste is called before pasting happens. so one would have to set some flag for pasting and than call onchange – Kazoom Nov 24 '10 at 17:50
feedback

Listen to the keyup event in the field. If the field's content has changed by more than 1 character after one keyup, something has been pasted.

As @epascarello points out, check right click events, too, as the user could be using the context menu.

link|improve this answer
duh. makes sense. my brain is fried today. I'll try this in a bit and get back to you. Thanks! – David Murdoch Dec 11 '09 at 22:37
How about right click and paste OR view and paste. key events are only part of the equation. – epascarello Dec 12 '09 at 0:03
Good point. Right click needs to be in, too. – Pekka Dec 12 '09 at 0:14
Just checking right click isn't good enough, the click on the actual context menu item won't fire the right click event, so you'd be firing too early. – Andy E Dec 12 '09 at 1:54
Also, what about the these keys in this order alt->E->P? – Andy E Dec 12 '09 at 2:15
show 2 more comments
feedback

Compare successive onChange events. If the difference between them is more than one character, it's a paste. Else it's typed in.

link|improve this answer
3  
The onChange event only fires after a blur of the textarea, so this wouldn't work. – Alex Sexton Dec 11 '09 at 23:48
feedback

I am actually going to suggest it listens to every keyup because it has multiple uses, if you type @ it will suggest friends, etc.

It probably scans the text and finds links and makes them, well linkable, and then crawls the page so you can post it as "Sharing" the page.

link|improve this answer
Didn't know about the @ sign. +1 for that. – David Murdoch Dec 12 '09 at 4:40
feedback
 <script type="text/javascript">
  $(document).ready(function(){
   $("#text").keypress (function(e){
    var code = (e.keyCode ? e.keyCode : e.which);
    if ((code == 86 || code == 118) && e.ctrlKey) //86 = v 118 = V
    {
     alert("Pasted!");
    }   
   });
  });
 </script>

</head>
<body>
 <textarea id="text">
 </textarea>
</body>
</html>
link|improve this answer
feedback

keypress does not work in IE8. Use keydown instead.

link|improve this answer
$('#textAreaID') .live('keydown', function (e) { var code = (e.keyCode ? e.keyCode : e.which); if ((code == 86 || code == 118) && e.ctrlKey) { return false; } return true; }); – Jacques Feb 23 '11 at 13:50
feedback

Check the field at half-second increments. If you detect a large change in the amount of text, it has probably been pasted.

link|improve this answer
Using timeout()? Events are clearly better for this. – Georg Schölly Dec 11 '09 at 22:23
feedback

or use the keypress event to detect a CTRL+V

link|improve this answer
5  
Thats assuming too much about which OS is being used. – Robert Jeppesen Dec 11 '09 at 22:09
3  
Plus, it asummes the user actually pressed the keys, and didnt, say, right click and pressed paste or drag&drop'ed the text from somewhere else. – Juan Dec 11 '09 at 22:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.