@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/js/autofill.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/js/autofill.js +++ a/koha-tmpl/opac-tmpl/bootstrap/js/autofill.js @@ -63,7 +63,9 @@ //field.$target.val(""); field.$target.trigger('autofill-undo'); } - $("#isbn").val(""); + $(":input[type='text']").each(function(){ + $(this).val(""); + }); self.$undo.hide(); }); --