I've got an input which it's type is set to hidden, I need to change it's type to text. Can't seem to figure this out or if it's possible with jQuery

link|improve this question

feedback

7 Answers

up vote 7 down vote accepted

IE won't allow you to change the type of a form element for security reasons so I would go with Aram's hidden div suggestion.

link|improve this answer
2  
While this is mostly true, Ian Mackinnon posted a solution below that worked for me. As of jQuery 1.4, you can change the input type if it is detached. – kingjeffrey Nov 12 '10 at 22:18
feedback

With jQuery 1.4 you can change the type of an input while it's detached.

marker = $('<span />').insertBefore('#myInput');
$('#myInput').detach().attr('type', 'text').insertAfter(marker).focus();
marker.remove();

I added a small change, the focus().

link|improve this answer
1  
This works a treat. I didn't know about detach(), nice one. – philoye Sep 22 '10 at 1:48
Perfect solution! Thanks. – kingjeffrey Nov 12 '10 at 22:15
Why this is not the selected answer is baffling to me! Bravo!! – Mild Fuzz Apr 28 '11 at 13:41
feedback

I'm not sure this is possible, so I would suggest using a hidden div to contain the input element, which can be shown as needed. The text input field can still hold data even if it's hidden.

link|improve this answer
1  
This is a good point for accessibility reasons. You shouldn't use a hidden input except for ancillary fields that are not intended for user input. – Andrew Vit Feb 12 '09 at 14:47
feedback

Here's how I would do this:

$("input[type='hidden']").each(function(){
  var name = $(this).attr('name'); // grab name of original
  var value = $(this).attr('value'); // grab value of original
  /* create new visible input */
  var html = '<input type="text" name="'+name+'" value="'+value+'" />';
  $(this).after(html).remove(); // add new, then remove original input
});

If you want to filter some of the elements call filter() before each(), like this:

$("input[type='hidden']").filter("[name='whatever']").each(function...
link|improve this answer
feedback
Overlay.toAnyType = function (c, type) {

    var shadow = jQuery(document.createElement(c.context.nodeName));

    // Clone attributes to new object.
    for (var i = 0; i < c[0].attributes.length; i++) {
        var attr = c[0].attributes[i].name;
        var val = c[0].attributes[i].value;

        if (attr == "type") val = type;
        shadow.attr(attr, val);
    }


    shadow.insertAfter(c);
    c.remove();
};

When c is a jQuery object; the function above changes type attribute. Usage:

var inputElemt = jQuery("#input");
Overlay.toAnyType(inputElemt, "text");
link|improve this answer
feedback

Old thread, but I recently needed to do something similar but with file fields and clearing them... I think the same solution could apply, but at least you can grab the contents in this case.

var temp = $('#hidden-field').val();
$("#container-for-field").html("<input id='not-hidden' type='text' value='"+temp+"'/>");

That should also solve the problem :).

link|improve this answer
feedback

easy man..

$('input[type="hidden"]).each (function() {  this.type = 'text' });

Trigger it on a event

link|improve this answer
1  
Have you tried this? – Esteban Araya Sep 3 '10 at 2:53
feedback

Your Answer

 
or
required, but never shown

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