Changes between Version 1 and Version 2 of documentation/C++Manual/Elements

Show
Ignore:
Author:
peterc (IP: 203.114.164.70)
Timestamp:
02/06/08 10:30:25 (10 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/C++Manual/Elements

    v1 v2  
    125125|| '''Rocket function''' || '''Brief description''' || '''Equivalent DOM method''' || 
    126126|| ''AddEventListener()'' || Register an event handler to a specific event type on the element. || ''addEventListener()'' || 
    127 || ''AppendChild()'' || Insert a node as the last child node of this element. || ''appendChild()'' || 
     127|| ''AppendChild()'' || Insert a node as the last child node of this element. The newly parented node will be detached from its existing parent. || ''appendChild()'' || 
    128128|| ''Blur()'' || Removes keyboard focus from the current element. || ''blur()'' || 
    129129|| ''Click()'' || Simulates a click on the current element. || ''click()'' || 
    135135|| ''HasAttribute()'' || Check if the element has the specified attribute, or not. || ''hasAttribute()'' || 
    136136|| ''HasChildNodes()'' || Check if the element has any child nodes, or not. || ''hasChildNodes()'' || 
    137 || ''InsertBefore()'' || Inserts the first node before the second, child, node in the DOM. || ''insertBefore()'' || 
     137|| ''InsertBefore()'' || Inserts the first node before the second, child, node in the DOM. The newly parented node will be detached from its existing parent. || ''insertBefore()'' || 
    138138|| ''RemoveAttribute()'' || Remove the named attribute from the current node. || ''removeAttribute()'' || 
    139139|| ''RemoveChild()'' || Removes a child node from the current element. || ''removeChild()'' ||