Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$(document).ready(function() {
    // #login-box password field
    $('#password').attr('type', 'text');
    $('#password').val('Password');
});

This is supposed to change the #password input field (with id="password") which is of type password to a normal text field and fill in the text "Password".

It doesn't work though. Why?

Here is the form:

<form enctype="application/x-www-form-urlencoded" method="post" action="/auth/sign-in">
  <ol>
    <li>
      <div class="element">
        <input type="text" name="username" id="username" value="Prihlasovacie meno" class="input-text" />
      </div>
    </li>
    <li>
      <div class="element">
        <input type="password" name="password" id="password" value="" class="input-text" />
      </div>
    </li>
    <li class="button">
      <div class="button">
        <input type="submit" name="sign_in" id="sign_in" value="Prihlásiť" class="input-submit" />
      </div>
    </li>
  </ol>
</form>
share|improve this question
What doesn't work about it? – Greg Oct 9 '09 at 14:57
Why do you want to change it? – ChaosPandion Oct 9 '09 at 14:58
I want to have a user firendly 'Password' text in the input so the users know what to fill in (because there is no label). – Richard Knop Oct 9 '09 at 14:59

20 Answers

up vote 159 down vote accepted

It's very likely this action is prevented as part of the browser's security model.

Edit: indeed, testing right now in Safari, I get the error type property cannot be changed.

Edit 2: that seems to be an error straight out of jQuery. Using the following straight DOM code works just fine:

var pass = document.createElement('input');
pass.type = 'password';
document.body.appendChild(pass);
pass.type = 'text';
pass.value = 'Password';

Edit 3: Straight from the jQuery source, this seems to be related to IE (and could either be a bug or part of their security model, but jQuery isn't specific):

// We can't allow the type property to be changed (since it causes problems in IE)
if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
    throw "type property can't be changed";
share|improve this answer
1  
This makes sense. There is nothing wrong with the jQuery. – ChaosPandion Oct 9 '09 at 14:59
38  
Man I wish I could give you +1 for using "indeed" in your answer. – ChaosPandion Oct 9 '09 at 15:01
8  
gotta say, this is the most useless security measurement I've ever seen. There doesn't seem to be that much of a difference between quickly changing the type of a field and replacing it with a totally new one. Very strange ... anyway, worked for me. Thanks! – Roman Geber Aug 18 '11 at 12:17
2  
its not security model stuff, I can confirm that it doesn't work in IE7, IE8 with error: Could not get the type property – Code Novitiate Aug 2 '12 at 23:59
2  
@Michael, I'd recommend against altering jQuery directly. Besides that it creates a conflict liability going forward, that check is probably in place for a reason. If you don't need to worry about IE support, you could instead implement a jQuery extension that parallels attr but allows changing the type attribute on input elements. – eyelidlessness Nov 2 '12 at 22:29
show 1 more comment

Even easier... there's no need for all the dynamic element creation. Just create two separate fields, making one the 'real' password field (type="password") and one a 'fake' password field (type="text"), setting the text in the fake field to a light gray color and setting the initial value to 'Password'. Then add a few lines of Javascript with jQuery as below:

    <script type="text/javascript">

        function pwdFocus() {
            $('#fakepassword').hide();
            $('#password').show();
            $('#password').focus();
        }

        function pwdBlur() {
            if ($('#password').attr('value') == '') {
                $('#password').hide();
                $('#fakepassword').show();
            }
        }
    </script>

    <input style="color: #ccc" type="text" name="fakepassword" id="fakepassword" value="Password" onfocus="pwdFocus()" />
    <input style="display: none" type="password" name="password" id="password" value="" onblur="pwdBlur()" />

So when the user enters the 'fake' password field it will be hidden, the real field will be shown, and the focus will move to the real field. They will never be able to enter text in the fake field.

When the user leaves the real password field the script will see if it's empty, and if so will hide the real field and show the fake one.

Be careful not to leave a space between the two input elements because IE will position one a little bit after the other (rendering the space) and the field will appear to move when the user enters/exits it.

share|improve this answer
1  
You can chain the following functions as well: $('#password').show(); $('#password').focus(); as $('#password').show().focus(); – Anriëtte Myburgh Jan 22 '11 at 11:30
And yeah, I used this answer, and it worked a treat! Thanks Joe. – Anriëtte Myburgh Jan 22 '11 at 11:32
I have both fields together like this: <input type="text" /><input type="password" /> and I still get a vertical shift in IE (9) when they swap. Chaining the methods ($('#password').show().focus();) didn't help with that, but it was a fun optimization move. Overall this was the best solution. – AVProgrammer Sep 16 '11 at 16:39
This is a great answer - I've spent ages wasting time trying to change the type of the input for my watermark, deployed your suggestion in thirty seconds :D cheers – ErmSo Jun 27 '12 at 12:03
if the user move focus to another control and onblur fired the focus will go back to the fake password field – Allan Chua Apr 9 at 18:43

One step solution

$('#password').get(0).type = 'text';
share|improve this answer
3  
document.getElementById should be sufficient and you do not need jQuery for it! ;-) – Gandaro Mar 25 '12 at 21:20
Actually, according to the question, it was jQuery solution. – Sanket Jul 3 '12 at 8:36
6  
or even shorter one, $('#password')[0].type = 'text'; – Sanket Jul 3 '12 at 8:37
Thanks! Pure craftiness ;) – Wiseman Sep 26 '12 at 12:09
1  
this can cause issues with IE9, type is undefined. Great for other browsers though. – kravits88 Dec 14 '12 at 0:47
show 3 more comments

A more cross-browser solution... hope this gist of this helps someone out there.

This solution tries to set the 'type' attribute, and if it fails, it simply creates a new <input> element, preserving element attributes and event handlers.

https://gist.github.com/3559343

share|improve this answer
That's just toooooo bad, if everyone says F... it, then nothing would work, it should work cross browser or not at all. – Val Mar 8 '12 at 10:52
I edited my response ;) – BMiner Mar 9 '12 at 21:07
Speaking of gists... you should create one for this code. gist.github.com – Christopher Parker Aug 30 '12 at 20:48
@ChristopherParker - good idea. All set :) – BMiner Aug 31 '12 at 21:32

An ultimate way to use jQuery:


Leave the original input field hidden from the screen.

$("#Password").hide(); //Hide it first
var old_id = $("#Password").attr("id"); //Store ID of hidden input for later use
$("#Password").attr("id","Password_hidden"); //Change ID for hidden input

Create new input field on the fly by JavaScript.

var new_input = document.createElement("input");

Migrate the ID and value from hidden input field to the new input field.

new_input.setAttribute("id", old_id); //Assign old hidden input ID to new input
new_input.setAttribute("type","text"); //Set proper type
new_input.value = $("#Password_hidden").val(); //Transfer the value to new input
$("#Password_hidden").after(new_input); //Add new input right behind the hidden input

To get around the error on IE like type property cannot be changed, you may find this useful as belows:

Attach click/focus/change event to new input element, in order to trigger the same event on hidden input.

$(new_input).click(function(){$("#Password_hidden").click();});
//Replicate above line for all other events like focus, change and so on...

Old hidden input element is still inside the DOM so will react with the event triggered by new input element. As ID is swapped, new input element will act like the old one and respond to any function call to old hidden input's ID, but looks different.

A little bit tricky but WORKS!!! ;-)

share|improve this answer

Type properties can't be changed you need to replace or overlay the input with a text input and send the value to the password input on submit.

share|improve this answer

I haven't tested in IE (since I needed this for an iPad site) - a form I couldn't change the HTML but I could add JS:

document.getElementById('phonenumber').type = 'tel';

(Old school JS is ugly next to all the jQuery!)

But, http://bugs.jquery.com/ticket/1957 links to MSDN: "As of Microsoft Internet Explorer 5, the type property is read/write-once, but only when an input element is created with the createElement method and before it is added to the document." so maybe you could duplicate the element, change the type, add to DOM and remove the old one?

share|improve this answer

I received the same error message while attempting to do this in Firefox 5.

I solved it using the code below:

<script type="text/javascript" language="JavaScript">

$(document).ready(function()
{
    var passfield = document.getElementById('password_field_id');
    passfield.type = 'text';
});

function focusCheckDefaultValue(field, type, defaultValue)
{
    if (field.value == defaultValue)
    {
        field.value = '';
    }
    if (type == 'pass')
    {
        field.type = 'password';
    }
}
function blurCheckDefaultValue(field, type, defaultValue)
{
    if (field.value == '')
    {
        field.value = defaultValue;
    }
    if (type == 'pass' && field.value == defaultValue)
    {
        field.type = 'text';
    }
    else if (type == 'pass' && field.value != defaultValue)
    {
        field.type = 'password';
    }
}

</script>

And to use it, just set the onFocus and onBlur attributes of your fields to something like the following:

<input type="text" value="Username" name="username" id="username" 
    onFocus="javascript:focusCheckDefaultValue(this, '', 'Username -OR- Email Address');"
    onBlur="javascript:blurCheckDefaultValue(this, '', 'Username -OR- Email Address');">

<input type="password" value="Password" name="pass" id="pass"
    onFocus="javascript:focusCheckDefaultValue(this, 'pass', 'Password');"
    onBlur="javascript:blurCheckDefaultValue(this, 'pass', 'Password');">

I use this for a username field as well, so it toggles a default value. Just set the second parameter of the function to '' when you call it.

Also it might be worth noting that the default type of my password field is actually password, just in case a user doesn't have javascript enabled or if something goes wrong, that way their password is still protected.

The $(document).ready function is jQuery, and loads when the document has finished loading. This then changes the password field to a text field. Obviously you'll have to change 'password_field_id' to your password field's id.

Feel free to use and modify the code!

Hope this helps everyone who had the same problem I did :)

-- CJ Kent

EDIT: Good solution but not absolute. Works on on FF8 and IE8 BUT not fully on Chrome(16.0.912.75 ver). Chrome does not display the Password text when the page loads. Also - FF will display your password when autofill is switched on.

share|improve this answer

This works for me.

$('#password').replaceWith($('#password').clone().attr('type', 'text'));
share|improve this answer
Thanks! This solves the issues I was having with the other answers not working in IE. Just remember this is a new object so you will have to re-grab it from the DOM if you have stored $('#password') in a variable. – kravits88 Dec 14 '12 at 1:00
This does not work in IE8. You still get the "type property can't be changed" error. – jcoffland Feb 5 at 22:54
still works for me every time. – stephenmuss Feb 6 at 2:58

Just create a new field to bypass this security thing:

var $oldPassword = $("#password");
var $newPassword = $("<input type='text' />")
                          .val($oldPassword.val())
                          .appendTo($oldPassword.parent());
$oldPassword.remove();
$newPassword.attr('id','password');
share|improve this answer

Nowadays, you can just use

$("#password").prop("type", "text");

But of course, you should really just do this

<input type="password" placeholder="Password" />

in all but IE. There are placeholder shims out there to mimic that functionality in IE as well.

share|improve this answer

use this one it is very easy

<input id="pw" onclick="document.getElementById('pw').type='password';
  document.getElementById('pw').value='';"
  name="password" type="text" value="Password" />
share|improve this answer
$('#pass').focus(function() { 
$('#pass').replaceWith("<input id='password' size='70' type='password' value='' name='password'>");
$('#password').focus();
});

<input id='pass' size='70' type='text' value='password' name='password'>
share|improve this answer

Here is a little snippet that allows you to change the type of elements in the documents!

https://gist.github.com/1192149

It gets around the issue by removing the input from the document, changing the type and then putting it back where it was originally.

Note that this snippet is tested for webkit browsers - no guarantees on anything else!

share|improve this answer
Actually, forget that - just use delete jQuery.attrHooks.type to remove jQuery's special handling of input types. – jb. Sep 26 '11 at 23:36
jQuery.fn.outerHTML = function() {
    return $(this).clone().wrap('<div>').parent().html();
};
$('input#password').replaceWith($('input.password').outerHTML().replace(/text/g,'password'));
share|improve this answer

This will do the trick. Although it could be improved to ignore attributes that are now irrelevant.

Plugin:

(function($){
  $.fn.changeType = function(type) {  
    return this.each(function(i, elm) {
        var newElm = $("<input type=\""+type+"\" />");
        for(var iAttr = 0; iAttr < elm.attributes.length; iAttr++) {
            var attribute = elm.attributes[iAttr].name;
            if(attribute === "type") {
                continue;
            }
            newElm.attr(attribute, elm.attributes[iAttr].value);
        }
        $(elm).replaceWith(newElm);
    });
  };
})(jQuery);

Usage:

$(":submit").changeType("checkbox");

Fiddle:

http://jsfiddle.net/joshcomley/yX23U/

share|improve this answer

I guess you could use a background-image that contains the word "password" and change it back to an empty background-image on .focus().

.blur() ----> image with "password" .focus() -----> image with no "password"

You could also do it with some CSS and jQuery. Have a text field show up exactly on top of the password field, hide() is on focus() and focus on the password field...

share|improve this answer

Simply this:

this.type = 'password';

such as

$("#password").click(function(){
    this.type = 'password';
});

This is assuming that your input field was set to "text" before hand.

share|improve this answer

Simple solution for all those who want the functionality in all browsers:

HTML

<input type="password" id="password">
<input type="text" id="passwordHide" style="display:none;">
<input type="checkbox" id="passwordSwitch" checked="checked">Hide password

jQuery

$("#passwordSwitch").change(function(){
    var p = $('#password');
    var h = $('#passwordHide');
    h.val(p.val());
    if($(this).attr('checked')=='checked'){
        h.hide();
        p.show();
    }else{
        p.hide();
        h.show();
    }
});
share|improve this answer

I like this way, to change the type of an input element: old_input.clone().... Here is an example. There is an check box "id_select_multiple". If this is is changed to "selected", input elements with name "foo" should be changed to check boxes. If it gets unchecked, they should be become radio buttons again.

  $(function() {
    $("#id_select_multiple").change(function() {
     var new_type='';
     if ($(this).is(":checked")){ // .val() is always "on"
          new_type='checkbox';
     } else {
         new_type="radio";
     }
     $('input[name="foo"]').each(function(index){
         var new_input = $(this).clone();
         new_input.attr("type", new_type);
         new_input.insertBefore($(this));
         $(this).remove();
     });
    }
  )});
share|improve this answer
This does not work in IE8. You still get the "type property can't be changed" error. – jcoffland Feb 5 at 22:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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