I found the following jQuery in the Koha library for changing the text for
"Place hold":

$(document).ready(function(){
    var holdlinks = $("a:contains('Place Hold'),a:contains('Place hold')");
    $(holdlinks).text("Request Item");
});

$(window).load(function(){
    $("input[value='Place Hold']").attr("value","Request Item");
});

It misses some instances like the at the top of the results page. Does
anyone have
code for this? We're on 3.18. Wonder if this is a case issue

Thank you!


-- 
Chad Roseburg
Asst. Director / IT
Automation Dept.
North Central Regional Library
_______________________________________________
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to