Как в данном коде, указать на то, чтобы поля, которые мы скрываем принимали исходные значения?
jQuery(document).ready(function($){
$('p.hide').hide();
$('a.add_file').on('click', function(e){
$('p.hide:not(:visible):first').show();
if(!$('p.hide:not(:visible)').length) {
$('a.add_file').hide( 10 );
}
e.preventDefault();
});
$('a.del_file').on('click', function(e){
var input_parent = $(this).parent();
var input_wrap = input_parent.find('span');
input_parent.hide();
if($('a.add_file:not(:visible)').length) {
$('a.add_file').show();
}
e.preventDefault();
});
});