From 9f2a445a80fb2e06c62143306db7152b9f5d5f63 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 28 Jul 2022 18:18:15 +0000 Subject: [PATCH] Bug 31251: Use jQuery val() to clear_entry 1. Add some patron attributes that are textarea and some that have an AV category so they are select dropdowns 2. Go to the patron form and add some values to the patron attributes 3. Use the "Clear" button to try and clear the values, doesnt work. 4. Apply patch 5. Try clearing values from patron attributes that are both select dropdowns and textarea. The "Clear" button should work. Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/js/members.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/members.js b/koha-tmpl/intranet-tmpl/prog/js/members.js index 9ae9c18ba8..6f58302e9a 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/members.js +++ b/koha-tmpl/intranet-tmpl/prog/js/members.js @@ -36,8 +36,8 @@ function check_form_borrowers(nav){ function clear_entry(node) { var original = $(node).parent(); - $("textarea", original).attr('value', ''); - $("select", original).attr('value', ''); + $("textarea", original).val(''); + $("select", original).val(''); } function clone_entry(node) { -- 2.30.2