Dear sir,
the following is the offical example of read attribute. But would you
tell me how to make it return the text 'Prototype'?
<a id="tag" href="/tags/prototype" rel="tag" title="view related
bookmarks." my_widget="some info.">Prototype</a>
$('tag').readAttribute('href');
// -> '/tags/prototype'
$('tag').readAttribute('title');
// -> 'view related bookmarks.'
$('tag').readAttribute('my_widget');
// -> 'some info.'
I have try
$('tag').readAttribute('text');
// -> 'null'
$('tag').readAttribute(innerHTML);
// -> 'null'
but both of them not work.
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.