Home | History | Annotate | Download | only in search

Lines Matching refs:elem

213         var elem = window.frames.MSearchResults.searchResults.NavNext(0);
214 if (elem) elem.focus();
666 var elem = this.FindChildElement(item.parentNode.parentNode.id);
667 if (elem && elem.style.display == 'block') // children visible
677 var elem = this.FindChildElement(item.parentNode.parentNode.id);
678 if (elem) elem.style.display = 'block';
683 var elem = this.FindChildElement(item.parentNode.parentNode.id);
684 if (elem) elem.style.display = 'none';
719 var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
720 if (!elem) // last child, jump to parent next parent
722 elem = this.NavNext(itemIndex+1);
724 if (elem)
726 elem.focus();
742 function setKeyActions(elem,action)
744 elem.setAttribute('onkeydown',action);
745 elem.setAttribute('onkeypress',action);
746 elem.setAttribute('onkeyup',action);
749 function setClassAttr(elem,attr)
751 elem.setAttribute('class',attr);
752 elem.setAttribute('className',attr);