change inputs values after reset form
$('.params_full input[type=reset]').on('click',function(){ this.form.reset(); $('.params_full input[type=text]').each(function(){ if($(this).val()!=''){ //$(this).val(number_format(replaceAll($(this).val(),' ',''),0,'.',' ')); } }); return false; });