> 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
_______________________________________________
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to