--- In [email protected], Jorg Heymans <[EMAIL PROTECTED]> wrote: > > Just curious, is there a way to write > el.attributes.getNamedItem("myattr") without getter syntax ?
Yes, you can do el.attributes["myattr"] if the DOM implementation implements the ECMAScript binding correctly. But ASV (at least version 3) does not implement that so you are better off using the expression you have above. But with Mozilla's implementation el.attributes["myattr"] does work. ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

