Class Node

Object
   |
   +--Node

class Node

 
Method Summary
 Object getParentBlock()
           Node - Get Parent Block - Climbs toward the root of the DOM tree until it finds an ancestor node for which isBlock is true, or it reaches the documentElement.
 Object insertAfter(newNode, refNode)
           Node - Insert After - A simple convenience function which inserted the newNode after the referenceNode.
 Object isAncestorOf(node)
           Node - Is Ancestor - Climbs the DOM tree until it finds the given node, or the documentElement.
 Object isBlock()
           Node - Is Block - Checks to see if this node has a CSS display property which matches the matchDisplayBlock regular expression (defined globally at the top of this file).


Method Detail

getParentBlock

Object getParentBlock()

insertAfter

Object insertAfter(newNode, refNode)

isAncestorOf

Object isAncestorOf(node)

isBlock

Object isBlock()


Documentation generated by JSDoc on Wed Oct 19 19:25:33 2005