Glossary
Working with Content
WordPress Basics
Web Terminology
Working with Interactive Design
Working with BU Websites
var termgroups = null, lists = [];
jQuery(document).ready( function() { jQuery( ".glossary-terms-list a" ).each(function( index ) { jQuery( this ).addClass( 'name' ); });
termgroups = jQuery( ".term-group" ); });
jQuery( window ).load(function() { var options = { listClass: 'glossary-terms-list', valueNames: [ 'name' ], };
termgroups.each(function( index ) { lists[ index ] = new List( jQuery( this ).attr( 'id' ) , options); });
jQuery( "#glossary-search" ).keyup( function( event ) {
for ( i = 0; i < lists.length; i++ ) {
lists[ i ].search( event.target.value );
}
});
});