[Koha] Hide MARC View separator

Owen Leonard oleonard at myacpl.org
Tue Sep 19 03:57:52 NZST 2017


> But using Firefox's "Inspect Element" feature, I saw that the "MARC view" tab
> has an ID of "MARCview".

True, but the <span> containing #MARCview has a style as well, so to
hide both completely you'll need:

$(document).ready(function(){
    $("#MARCview").parent().hide();
});

  -- Owen

-- 
Web Developer
Athens County Public Libraries
http://www.myacpl.org


More information about the Koha mailing list