up vote 12 down vote favorite
6
share [g+] share [fb]

Is there a way using Javascript to disable the ability to paste text into a text field on an HTML form?

E.g. I have a simple registration form where the user is required to input their email twice. The second email entry is to verify there are no typos in the first email entry. However if the user copy/pastes their email then that defeats the purpose and I've been experiencing users having problems because they've input the wrong email and copy/pasted it.

Thanks!

EDIT: Maybe I wasn't clear on my question but I am not trying to prevent people from copying (or drag selecting) text on their browser. I just want to stop them from pasting input into a text field to minimize user error.

Perhaps instead of using this "hack" you can suggest another solution to the core problem of what I'm trying to solve here? I've done less than half a dozen user tests and this has already happened twice. My audience does not have a high level of computer proficiency.

link|improve this question

16  
Stopping people from copy/pasting their email address from their address book to their browser. That'll go down well. – Quentin Aug 4 '09 at 10:08
4  
Can't do much when it's a client insisting the change. enjoy your drink :) – justinl Jul 7 '11 at 4:05
feedback

protected by Community Sep 14 '11 at 0:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

14 Answers

up vote 5 down vote accepted

How about sending a confirmation email to the email address that the user has just entered twice in which there is a link to a confirmation URL on your site, then you know that they have got the message?

Anyone that doesn't click to confirm the receipt of the email may have entered their email address incorrectly.

Not a perfect solution, but just some ideas.

link|improve this answer
1  
I have this implementation currently. The problem is that the user thinks they do not receive the email due to an error on our end because they check their email address that they think they entered and they do not have an email. Also what happens is that when they try to re-register again, the username that they used is now unavailable because it is stuck with that incorrect email address. – justinl Aug 4 '09 at 13:07
Tnen maybe add some workflow / code that runs everyday cleaning out usernames that have not been confirmed for say 2 days. – Colin Aug 4 '09 at 13:14
Thanks for the comment. My thoughts would be that if you tried to create an account on a website and it said that your user name was taken, would you go back again in 2 days and try it again? My thoughts are most likely not. Either you've created a new account with a different username the same day or you've not bothered coming back to the site because you couldn't figure out how to register and the site was "too complicated". – justinl Aug 4 '09 at 13:17
6  
To continue what Colin is saying, you could possibly assume that when someone is trying to re-register with the same username and a different email address and they haven't responded to the confirmation message it's probably okay to let them do so. You might find that people get their domain correct in their email but misspell their username and could use this to further determine when someone has made a mistake? – Richard Aug 4 '09 at 13:18
1  
I really like that idea of allowing users to re-register who have not yet confirmed their account information. I think this design solution is better than my original proposed technical solution. Hearing form everyone else that changing this default browser functionality was a bad idea was what I needed to hear to find a better solution. – justinl Aug 4 '09 at 14:47
feedback

I recently had to begrudgingly disable pasting in a form element. To do so, I wrote a cross-browser* implementation of Internet Explorer's (and others') onpaste event handler. My solution had to be independent of any third-party JavaScript libraries.

Here's what I came up with. It doesn't completely disable pasting (the user can paste a single character at a time, for example), but it meets my needs and avoids having to deal with keyCodes, etc.

// Register onpaste on inputs and textareas in browsers that don't
// natively support it.
(function () {
    var onload = window.onload;

    window.onload = function () {
        if (typeof onload == "function") {
            onload.apply(this, arguments);
        }

        var fields = [];
        var inputs = document.getElementsByTagName("input");
        var textareas = document.getElementsByTagName("textarea");

        for (var i = 0; i < inputs.length; i++) {
            fields.push(inputs[i]);
        }

        for (var i = 0; i < textareas.length; i++) {
            fields.push(textareas[i]);
        }

        for (var i = 0; i < fields.length; i++) {
            var field = fields[i];

            if (typeof field.onpaste != "function" && !!field.getAttribute("onpaste")) {
                field.onpaste = eval("(function () { " + field.getAttribute("onpaste") + " })");
            }

            if (typeof field.onpaste == "function") {
                var oninput = field.oninput;

                field.oninput = function () {
                    if (typeof oninput == "function") {
                        oninput.apply(this, arguments);
                    }

                    if (typeof this.previousValue == "undefined") {
                        this.previousValue = this.value;
                    }

                    var pasted = (Math.abs(this.previousValue.length - this.value.length) > 1 && this.value != "");

                    if (pasted && !this.onpaste.apply(this, arguments)) {
                        this.value = this.previousValue;
                    }

                    this.previousValue = this.value;
                };

                if (field.addEventListener) {
                    field.addEventListener("input", field.oninput, false);
                } else if (field.attachEvent) {
                    field.attachEvent("oninput", field.oninput);
                }
            }
        }
    }
})();

To make use of this in order to disable pasting:

<input type="text" onpaste="return false;" />


* I know oninput isn't part of the W3C DOM spec, but all of the browsers I've tested this code with—Chrome 2, Safari 4, Firefox 3, Opera 10, IE6, IE7—support either oninput or onpaste. Out of all these browsers, only Opera doesn't support onpaste, but it does support oninput.

Note: This won't work on a console or other system that uses an on-screen keyboard (assuming the on-screen keyboard doesn't send keys to the browser when each key is selected). If it's possible your page/app could be used by someone with an on-screen keyboard and Opera (e.g.: Nintendo Wii, some mobile phones), don't use this script unless you've tested to make sure the on-screen keyboard sends keys to the browser after each key selection.

link|improve this answer
feedback

You can..... but don't.

You should not be altering the default behaviour of a users browser. It really is bad usability for your web application. Also if a user wants to disable this hack then they can just disable javascript on their browser.

Just add these attributes to the textbox

ondragstart=”return false” onselectstart=”return false”
link|improve this answer
feedback

<editorial>

Don't do it. Don't mess with the user's browser. By Copy + Pasting into an E-Mail confirmation field, the user accepts responsibility over what they type. If they are dumb enough to copy + paste a faulty address (it has happened to me) then it's their own damn fault.

If you want to make sure that the E-Mail confirmation works out, have the user check their E-Mail while your site waits ("Please open your webmail program in a new window"). Show the E-Mail address in big fat letters ("The confirmation E-Mail was sent to.... made an error? CLick here to change).

Even better, if you can, let the user have some kind of limited access without confirming. That way, they can log in straight away and you improve your chances to keep in touch with the visitor even if the confirmation mail is blocked due to other reasons (e.g. spam filters).

</editorial>

link|improve this answer
feedback

Crazy idea: Require the user to send you an email as part of the signup process. This would obviously be inconvenient when clicking on a mailto link doesn't work (if they're using webmail, for example), but I see it as a way to simultaneously guarantee against typos and confirm the email address.

It would go like this: They fill out most of the form, entering their name, password, and whatnot. When they push submit, they're actually clicking a link to send mail to your server. You've already saved their other information, so the message just includes a token saying which account this is for.

link|improve this answer
Ha, that is a neat idea. – justinl Nov 13 '09 at 17:31
feedback

You could attach a "keydown" listener to the input box to detect whether or not the Ctrl + V keys are being pressed and, if so, stop the event or set the input box's value to ''.

That wouldn't handle right clicking and pasting or pasting from the Edit menu of the browser, though. You may need to add a "last length" counter to the keydown listener and use an interval to check the field's current length to see if it increase since the last keystroke.

Neither is recommended, though. Form fields with paste disabled are extremely frustrating. I'm capable of typing my email correctly the first time, so I reserve the right to paste it into the second box.

link|improve this answer
Not right click or even anything from Apples, Unix or ctrl-ins, and how about iPhones? – Martlark Aug 4 '09 at 10:09
I am also not a big fan of disabling the input field as I find that frustrating myself. But what are the other options to stop this type of user error? Or which solution will end up with the least incorrectly completed user registrations? It seems a bit annoying to have to type in an email address manually again, but if it's going to save frustrated potential customers then I'd prefer to force users to manually type something into an input field. I'm thinking it's not a big inconvenience and the amount of frustration it could save someone from a simple mistake might be worht it. Thoughts? – justinl Aug 4 '09 at 13:23
feedback

Add a second step to your registration process. First page as usual, but on reload, display a second page and ask the email again. If it's that important, the user can handle it.

link|improve this answer
feedback

I found a JavaScript solution to disable copy paste on a text box:

for detail kindly visit: http://unnisworld.wordpress.com/2007/10/31/how-to-disable-copy-paste-and-autocomplete-for-an-html-textbox/#comment-1485

Thanks

link|improve this answer
+1 the example in the blog post works in IE, FF, Chrome, Safari. Add the following HTML to an input field, i.e. onCopy=”return false” onDrag=”return false” onDrop=”return false” onPaste=”return false” – pnairn Jul 28 '11 at 6:46
feedback

Simple solution: just reverse the registration process: instead of requiring confirmation at the end of registration process, request confirmation at the beginning of it! I.e. the registration process started with a simple form asking for e-mail address and nothing else. Upon submitting, an e-mail with link to a confirmation page unique to the e-mail address sent out. The user go to that page, then the rest of information for the registration (user name, full name, etc.) will be requested.

This is simple since the website does not even need to store anything before confirmation, the e-mail address can be encrypted with a key and attached as part of the confirmation page address.

link|improve this answer
feedback

what about using CSS on UIWebView? something like

<style type="text/css">
<!—-
    * {
        -webkit-user-select: none;
    }
-->
</style>

also you can read detail about block copy-paste using CSS http://rakaz.nl/2009/09/iphone-webapps-101-getting-safari-out-of-the-way.html

link|improve this answer
feedback

I did something similar to this for http://bookmarkchamp.com - there I wanted to detect when a user copied something into an HTML field. The implementation I came up with was to check the field constantly to see if at any time there was suddenly a whole lot of text in there.

In other words: if once milisecond ago there was no text, and now there are more than 5 chars... then the user probably pasted something in the field.

If you want to see this working in Bookmarkchamp (you need to be registered), paste a URL into the URL field (or drag and drop a URL in there).

link|improve this answer
feedback

ondragstart=”return false” onselectstart=”return false” these are not the attributes on a Input type=text.

Not sure how this is working...

any custom java script should be return

link|improve this answer
feedback

from

Some may suggest using Javascript to capture the users' actions, like right-clicking the mouse or the Ctrl+C / Ctrl+V key combinations and then stopping the operation. But this is obviously not the best or simplest solution. The solution is integrated in the input field properties itself together with some event capturing using Javascript.

In order to disabled the browsers' autocomplete, simply add the attribute to the input field. It should look something like this:

<input type="text" autocomplete="off">

And if you want to deny Copy and Paste for that field, simply add the Javascript event capturing calls oncopy, onpaste, and oncut and make them return false, like so:

<input type="text" oncopy="return false;" onpaste="return false;" oncut="return false;">

The next step is using onselectstart to deny the input field's content selection from the user, but be warned: this only works for Internet Explorer. The rest of the above work great on all the major browsers: Internet Explorer, Mozilla Firefox, Apple Safari (on Windows OS, at least) and Google Chrome.

link|improve this answer
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Kev Sep 5 '11 at 22:20
yaah, I will take care next time onwards – vaichidrewar Sep 6 '11 at 14:18
1  
Why not start now by describing what is "explained very nicely", that's how you get upvotes and better rep :) – Kev Sep 6 '11 at 14:21
feedback

Add a class of 'disablecopypaste' to the inputs you want to disable the copy paste functionality on and add this jQuery script

  $(document).ready(function () {
    $('input.disablecopypaste').bind('copy paste', function (e) {
       e.preventDefault();
    });
  });
link|improve this answer
feedback

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