Lines Matching refs:targ

13744         var targ = Firebug.browser.getElementFromPoint(e.clientX, e.clientY);
13748 var id = targ.id;
13753 while (targ.nodeType != 1) targ = targ.parentNode;
13764 var targ = Firebug.browser.getElementFromPoint(e.clientX, e.clientY);
13768 var id = targ.id;
13773 while (targ.nodeType != 1) targ = targ.parentNode;
13775 if (targ.nodeName.toLowerCase() == "body") return;
13778 Firebug.Inspector.drawOutline(targ);
13780 if (ElementCache(targ))
13782 var target = ""+ElementCache.key(targ);
13788 Firebug.HTML.selectTreeNode(""+ElementCache.key(targ));
13812 var targ = e.target;
13815 var id = targ.id;
13820 while (targ.nodeType != 1) targ = targ.parentNode;
13822 if (targ.nodeName.toLowerCase() == "body") return;
13825 Firebug.Inspector.drawOutline(targ);
13827 if (ElementCache.has(targ))
13828 FBL.Firebug.HTML.selectTreeNode(""+ElementCache.key(targ));
24699 var targ;
24701 if (e.target) targ = e.target;
24702 else if (e.srcElement) targ = e.srcElement;
24703 if (targ.nodeType == 3) // defeat Safari bug
24704 targ = targ.parentNode;
24707 if (targ.className.indexOf('nodeControl') != -1 || targ.className == 'nodeTag')
24712 if(targ.className == 'nodeTag')
24714 var control = isIE ? (targ.parentNode.previousSibling || targ) :
24715 (targ.parentNode.previousSibling || targ);
24717 selectElement(targ.parentNode.parentNode);
24723 control = targ;
24737 else if (targ.className == 'nodeValue' || targ.className == 'nodeName')
24755 var targ;
24757 if (e.target) targ = e.target;
24758 else if (e.srcElement) targ = e.srcElement;
24759 if (targ.nodeType == 3) // defeat Safari bug
24760 targ = targ.parentNode;
24762 if (hasClass(targ, "fbPanel")) {
24776 var targ;
24778 if (e.target) targ = e.target;
24779 else if (e.srcElement) targ = e.srcElement;
24780 if (targ.nodeType == 3) // defeat Safari bug
24781 targ = targ.parentNode;
24784 while (targ && !found) {
24785 if (!/\snodeBox\s|\sobjectBox-selector\s/.test(" " + targ.className + " "))
24786 targ = targ.parentNode;
24791 if (!targ)
24805 if (typeof targ.attributes[cacheID] == 'undefined') return;
24807 var uid = targ.attributes[cacheID];
24817 if (!/\snodeBox\s|\sobjectBox-selector\s/.test(" " + targ.className + " ")) return;