http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10941 Stefano Bargioni <bargioni@pusc.it> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bargioni@pusc.it --- Comment #1 from Stefano Bargioni <bargioni@pusc.it> --- A temporary solution through JQuery can be: var tags = $('div[id^=div_indicator_tag_]'); for (var i=0; i < tags.length; i++) { var t = $(tags[i]); var tag_name = t.attr('id').replace(/div_indicator_tag_/,'').substr(0,3); t.find('span:first').after('<a href="#" class="marcdocs" title="LC MARC auth specifications" onclick="MARC21FieldAuth(\''+tag_name+'\'); return false"> ?</a>'); } $('.marcdocs').css({'color':'blue','font-weight':'bold'}); -- You are receiving this mail because: You are watching all bug changes.