11 Aug
2014
11 Aug
'14
11:20 a.m.
On 2014-08-10, at 8:07 PM, Chrispin Simasiku Sitali wrote:
Greetings to all,
How would I add multiple statements in opacuserjs. e.g.
$(document).ready(function(){ $("#auth legend:contains('Log in to your account')").text("Log in to your library account"); $("#auth label[for='userid']").html("Library Card Number:"); $("#auth label[for='password']").html("PIN:"); });
$(document).ready(function(){
var holdlinks = $("a:contains('Place Hold'),a:contains('Place hold')"); $(holdlinks).text("Get It Now!"); });
$(window).load(function(){ $("input[value='Place Hold']").attr("value","Get It Now!");
}); }); hi, you missed 2 lines?