The easiest way is to use replaceHTML or replaceInnerHTML to replace the entire <input> with a new value attribute. If your input had focus then it is more difficult, since replacing the tag will mean losing focus. In such a case you will have to write your own plugin. Hedley