Subj : Re: JavaScript To : "FoxZ Olm >" <"FoxZ Olm >"> From : Igor Bukanov Date : Wed Feb 04 2004 04:14 pm FoxZ Olm wrote: > Hi, > > under IE we can write
> document.write(document.getElementById('test').myown); This is DOM-bindings question, not JS question, see follow-up newsgroup. > > u get "ooo" > > how do this under mozilla js ? Use the the standard DOM API getAttribute: document.write(document.getElementById('test').getAttribute('myown')); Regards, Igor .