Search Results for All Content (access may be restricted)

Search returned: 3746 document(s).

Result display is limited to 1000 documents. Continue to refine your search.
'; $('body').append( $( '
' ) ); $('body').append( $(html) ); // Reposition it var w = $('#modalmessage').width() + 16; var h = $('#modalmessage').height() + 16; var l = ( window.innerWidth - w ) / 2; var t = ( window.innerHeight - h ) * .5 ; $('#modalmessage').css('left',l); $('#modalmessage').css('top',t); $('form[name=formsearch]').submit(); return false; } /** * Custom function for pagination routine interface */ function navpage( t, form) { var p = $(t).attr('page_id'); $( '#page_id' ).val( p ); return submitform(); } /** * toggle display of sub-topics */ function expander() { var id=this.id; var toks = id.split('_'); var reveal = '#reveal_'+toks[1]+'_'+toks[2]; $(this).toggleClass( "showplus showminus"); //$(reveal).toggle(); $(reveal).toggleClass("opened closed"); } /** * Run checkbox rules */ function fixchecks() { if( typeof this == 'undefined' ) return; var id = this.id; //alert(id); // // If this element is checked, always unclear any child elements // of this element. // if( $(this).prop("checked") ) { // Clear all children that have a parent_id of this id // // ie, an attribute: parent_topic_15="yes" // $('*[parent_'+id+']').each( function( i ){ $(this).prop("checked",false);}); //alert('children cleared'); } // // If this element has parent nodes defined, // then clear them upwards // var parents = $(this).attr('parent_ids'); if( typeof parents != 'undefined' && parents != false ) { // Child nodes. If this element is checked, then // always uncheck parents and children if( $(this).prop("checked") ) { // Split parents into components and call uncheck for each var ps = parents.trim().split(' '); $.each( ps, function( k, n ) { $('#'+n).prop("checked",false); }); //alert('would clear parent '+id); } } submitform(); } function xfacetexpander() { //alert('arrow'); facetexpander(); } function facetexpander( event ) { var id=this.id; //alert('generated by '+id); var region = $(this).attr('region'); //$(this).toggleClass("collapsed expanded"); $('#facet_container_'+region).toggleClass("collapsed expanded"); $('#facet_expander_'+region).toggleClass("collapsed expanded"); //alert(region); event.stopPropagation(); } $(function() { $('.fmulti').click( fixchecks ); $('.autosubmit').change( submitform ); $('.expander').click( expander ); $('.facetexpander').click(facetexpander); $('.facettitle').click(facetexpander); });