@@ -, +, @@ "relationship" in members.js --- koha-tmpl/intranet-tmpl/prog/js/members.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/members.js +++ a/koha-tmpl/intranet-tmpl/prog/js/members.js @@ -109,9 +109,9 @@ function select_user(borrowernumber, borrower, relationship) { fieldset.find('.new_guarantor_firstname_text').first().text( guarantor_firstname ); $('#guarantor_firstname').val(""); - var guarantor_relationship = $('#relationship').val(); + var guarantor_relationship = $('.relationship').val(); fieldset.find('.new_guarantor_relationship').first().val( guarantor_relationship ); - $('#relationship').find('option:eq(0)').prop('selected', true); + $('.relationship').find('option:eq(0)').prop('selected', true); fieldset.find('.guarantor-details').first().attr( 'data-borrowernumber', borrowernumber ); --