[svg-developers] iterate elemnets one by one

2005-02-25 Thread raghu raman
Hi I create and append the path element with id named as arrow line at some times in a groupElement. Now I need to get the element one by one using arrowLine. Is there any functions availabel to get the all elements using elements id. var

RE: [svg-developers] iterate elemnets one by one

2005-02-25 Thread Doug Schepers
Hi, Raghu- An id is a unique identifier. You shouldn't have more than one element in a single document with the same id, and if you do, the results of accessing any of them by script will be unpredictable. A solution would be to increment the ids (arrowLine1, arrowLine2, arrowLine3), and to