Ian,

In the Javascript Bible Gold Edition, there is no mention of such an index
(at least that I can remember reading). This might be a simple funciton for
such a thing:

function GetIndex( objAny ){
  var intIndex = 0;
                        
  // Crawl up the sibling chain.
  for ( intIndex = 0 ; objAny.previousSibling != null ; intIndex++){
    objAny = objAny.previousSibling;
  } 

  return( intIndex );
} 


.......................
Ben Nadel 
www.bennadel.com

-----Original Message-----
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 17, 2006 5:59 PM
To: CF-Talk
Subject: OT: JavaScript

Is there a function or property to will identify what position a childNode
is in the childNode array of its parent?


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

---------
| 1 |   |
---------  Binary Soduko
|   |   |
---------
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for the
sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender and delete any
copies of this message. 





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246833
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to