http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8401 --- Comment #8 from Jorge de Cardenas <jdeca@smfpl.org> --- This seem to work disabling highlighting on both 'option' and 'textarea' File: preferences.js Path: /home/koha/kohaclone/koha-tmpl/intranet-tmpl/prog/en/js/pages if ( to_highlight ) { var words = to_highlight.split( ' ' ); $( '.prefs-tab table' ).find( 'td, th' ).not( '.name-cell').each( function ( i, td ) { $.each( words, function ( i, word ) { $( td ).highlight( word ) } ); } ).find( 'option, textarea' ).removeHighlight(); } changed .find( 'option' ).removeHighlight(); to .find( 'option, textarea' ).removeHighlight(); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.