@@ -, +, @@ selected library --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt | 7 +++++++ 1 file changed, 7 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt @@ -11,6 +11,7 @@ return checkForm( this ); }); }); + /** * checkForm(form) * This function check the form is correctly filled. @@ -34,6 +35,12 @@ } return true; } + + $(document).ready(function() { + $('#branch').change(function() { + $('#selectlibrary').submit(); + }); + }); --