Flip it to hidden What is the value of the hidden field?
$("a.flipIt").click(function(){
var input = $('#test');
var hidden = $('').insertBefore(input);
input.remove();
});
$("a.showHidden").click(function(){
alert($("input:hidden").attr("value"));
});