Lines Matching refs:element

428 	HasAttribute : function( element, attributeName )  argument
430 if ( element.hasAttribute )
431 return element.hasAttribute( attributeName ) ;
434 var att = element.attributes[ attributeName ] ;
442 HasAttributes : function( element ) argument
444 var attributes = element.attributes ;
456 if ( element.className.length > 0 )
469 RemoveAttribute : function( element, attributeName ) argument
474 return element.removeAttribute( attributeName, 0 ) ;
477 GetAttributeValue : function( element, att ) argument
482 att = element.attributes[ att ] ;
490 return element.style.cssText ;
500 return element.getAttribute( attName, 2 ) ;
531 BreakParent : function( element, parent, reusableRange ) argument
533 var range = reusableRange || new FCKDomRange( FCKTools.GetElementWindow( element ) ) ;
537 range.SetStart( element, 4 ) ;
544 range.InsertNode( element.parentNode.removeChild( element ) ) ;
547 docFrag.InsertAfterNode( element ) ;
627 CloneElement : function( element ) argument
629 element = element.cloneNode( false ) ;
632 element.removeAttribute( 'id', false ) ;
634 return element ;
637 ClearElementJSProperty : function( element, attrName ) argument
640 element.removeAttribute( attrName ) ;
642 delete element[attrName] ;
645 SetElementMarker : function ( markerObj, element, attrName, value) argument
648 element._FCKMarkerId = id ;
649 element[attrName] = value ;
651 markerObj[id] = { 'element' : element, 'markers' : {} } ;
655 ClearElementMarkers : function( markerObj, element, clearMarkerObj ) argument
657 var id = element._FCKMarkerId ;
660 this.ClearElementJSProperty( element, '_FCKMarkerId' ) ;
662 this.ClearElementJSProperty( element, j ) ;
853 CheckIsEmptyElement : function( element, elementCheckCallback ) argument
855 var child = element.firstChild ;
877 SetElementStyles : function( element, styleDict ) argument
879 var style = element.style ;