I'm looking for a way to sanitize input that I paste into the browser, is this possible to do with jQuery?

I've managed to come up with this so far:

$(this).live(pasteEventName, function(e) {
 // this is where i would like to sanitize my input
 return false;
}

Unfortunately my development has come to a screeching hold because of this "minor" issue. I would really make me a happy camper if someone could point me to the right direction.

Thanks in advance.

link|improve this question
feedback

11 Answers

OK, just bumped into the same issue.. I went around the gipsy way (as my collegue is always making fun of me heheh..)

$(".inputTextArea").bind('paste', function(e) {
	var el = $(this);
	setTimeout(function() {
	    var text = $(el).val();
    	alert(text);
	}, 100);
});

Just a small timeout till .val() func can get populated.

E.

link|improve this answer
2  
What if there is text in the textarea already and you paste, and you just wanted the pasted text? – barfoon Apr 8 '11 at 17:42
2  
Works perfectly, thanks. A timeout of 0 works just as well. The function just needs deferred to the next loop. – user563811 Sep 28 '11 at 10:20
@barfoon Just make sure to clean the textarea at the end of your timeout, after you've grabbed the value. This way it's restored to the clean state after each paste. – Jacob Jan 31 at 9:56
1  
sry but i don't get it. What do i want with the alert? How do i properly return it so this gets pasted? And why does this clean the code? Why the timeout? – xotix Feb 8 at 14:07
1  
@user563811: Just do note that the official minimum timeout is 4ms in HTML5. – pimvdb Apr 8 at 19:24
show 1 more comment
feedback

I'd like to add a small piece of information for you guys out there using setTimeout(code,250). A small trick I have learned is to use a setTimeout delay of 0, this sends the function to the bottom of the rendering stack, allows the text to be added to the textbox then executes the code. (If you need this functionality) I have tested this in ie 7/8 and firefox and seems to work for both.It avoids having to use arbitrary timeout delays

link|improve this answer
nice info, thanks – Robot Mess May 2 at 14:33
feedback
up vote 5 down vote accepted

I sort of fixed it by using the following code:

$("#editor").live('input paste',function(e){
    if(e.target.id == 'editor') {
    	$('<textarea></textarea>').attr('id', 'paste').appendTo('#editMode');
    	$("#paste").focus();
    	setTimeout($(this).paste, 250);
    }
});

Now I just need to store the caret location and append to that position then I'm all set... I think :)

link|improve this answer
1  
How did you store the caret location? – Petah Feb 11 '11 at 2:51
@Petah You could check which element has focus with .find(':focus'), and knowing that element determine caret location for it. See this. – Jacob Jan 31 at 10:02
this only seem to work in chrome – Ha11owed May 2 at 19:50
feedback

This is getting closer to what you might want.

function sanitize(s) {
  return s.replace(/\bfoo\b/g, "~"); 
};

$(function() {
 $(":text, textarea").bind("input paste", function(e) {
   try {
     clipboardData.setData("text",
       sanitize(clipboardData.getData("text"))
     );
   } catch (e) {
     $(this).val( sanitize( $(this).val() ) );
   }
 });
});

Please note that when clipboardData object is not found (on browsers other then IE) you are currently getting the element's full value + the clipboard'ed value.

You can probably do some extra steps to dif the two values, before an input & after the input, if you really are only after what data was truly pasted into the element.

link|improve this answer
feedback

Hmm... I think you can use e.clipboardData to catch the data being pasted. If it doesn't pan out, have a look here.

$(this).live("paste", function(e) {
    alert(e.clipboardData); // [object Clipboard]
});
link|improve this answer
When I run this in Safari I get 'undefined' :( – Christoffer Winterkvist Mar 26 '09 at 18:44
feedback

Listen for the paste event and set a keyup event listener. On keyup, capture the value and remove the keyup event listener.

$('.inputTextArea').bind('paste', function (e){
    $(e.target).keyup(getInput);
});
function getInput(e){
    var inputText = $(e.target).val();
    $(e.target).unbind('keyup');
}
link|improve this answer
This is very good, but it doesn't work for right click pasting. – AnomalousThought Jan 7 at 4:27
feedback

See this example: http://www.p2e.dk/diverse/detectPaste.htm

It essentialy tracks every change with oninput event and then checks if it’s a paste by string comparison. Oh, and in IE there’s an onpaste event. So:

$ (something).bind ("input paste", function (e) {
    // check for paste as in example above and
    // do something
})
link|improve this answer
So it is impossible just to get the paste text when the event occurs? – Christoffer Winterkvist Mar 26 '09 at 18:51
Well, I guess you will have to deal with it yourself, like, compare the before and after. It has to be rather easy. But why don’t you just revalidate the whole input? Slow? – Ilya Birman Mar 26 '09 at 19:04
I just thought that would be possible to do but I guess not, Right now I'm trying another method by pasting it into a textarea and then transfering it to its final destination. I'm hoping that will work. – Christoffer Winterkvist Mar 26 '09 at 19:45
You just have to find the maximum matching fragment in the beginning of two strings (before and after). Everything from there and up to the lengths difference is the pasted text. – Ilya Birman Mar 27 '09 at 8:22
feedback

This proved to be quite illusive. The value of the input is not updated prior to the execution of the code inside the paste event function. I tried calling other events from within the paste event function but the input value is still not updated with the pasted text inside the function of any events. That is all events apart from keyup. If you call keyup from within the paste event function you can sanitize the pasted text from within the keyup event function. like so...

$(':input').live
(
    'input paste',
    function(e)
    {
        $(this).keyup();
    }
);

$(':input').live
(
    'keyup',
    function(e)
    {
        // sanitize pasted text here
    }
);

There is one caveat here. In Firefox, if you reset the input text on every keyup, if the text is longer than the viewable area allowed by the input width, then resetting the value on every keyup breaks the browser functionality that auto scrolls the text to the caret position at the end of the text. Instead the text scrolls back to the beginning leaving the caret out of view.

link|improve this answer
feedback

There is one caveat here. In Firefox, if you reset the input text on every keyup, if the text is longer than the viewable area allowed by the input width, then resetting the value on every keyup breaks the browser functionality that auto scrolls the text to the caret position at the end of the text. Instead the text scrolls back to the beginning leaving the caret out of view.

function scroll(elementToBeScrolled) 
{
     //this will reset the scroll to the bottom of the viewable area. 
     elementToBeScrolled.topscroll = elementToBeScrolled.scrollheight;
}
link|improve this answer
feedback

This method uses jqueries contents().unwrap().

  1. First, detect the paste event
  2. Add a unique class to the tags that are already in the element into which we are pasting.
  3. After a given timeout scan through all the contents unwrapping tags that don't have the class that you set earlier. Note: This method does not remove self closing tags like
    See an example below.

    //find all children .find('*') and add the class .within .addClass("within") to all tags
    $('#answer_text').find('*').each(function () {
    $(this).addClass("within");
    });
    setTimeout(function() {
    $('#answer_text').find('*').each(function () {
        //if the current child does not have the specified class unwrap its contents
        $(this).not(".within").contents().unwrap();
    });
    }, 0);
    
link|improve this answer
feedback

For cross platform compatibility, it should handle oninput and onpropertychange events:

$ (something).bind ("input propertychange", function (e) {
    // check for paste as in example above and
    // do something
})
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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