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
|
|
With jQuery 1.4 you can change the type of an input while it's detached.
I added a small change, the focus(). |
|||||||||||||||||
|
|
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. |
|||||||
|
|
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. |
|||||
|
|
Here's how I would do this:
If you want to filter some of the elements call filter() before each(), like this:
|
|||
|
|
When c is a jQuery object; the function above changes type attribute. Usage:
|
|||
|
|
|
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.
That should also solve the problem :). |
|||
|
|
|
easy man..
Trigger it on a event |
|||||
|