(Although I suspect bumping is frowned up... so maybe responding to
bumbs is as well...)
I'm not completely sure what you want to do, but do you want to be
able to change an anchor tag from being a regular link, to just being
regular text? (i.e. not show the "I'm a link" mouse cursor over it).
If so, you could just grab the anchor tag, grab its content, and
replace it with a span with the same content? To 'disable' a link,
something like
var nonLink = new Element('span', {'html':$
('myLinkID').getProperty('html'), 'id':'myNonLinkID'}.replaces($
('myLinkID'));
or to "enable" a link:
var link = new Element('a', {'html':$('myLinkID').getProperty('html'),
'id':'myLinkID'}.replaces($('myNonLinkID'));
(This doesn't save the href of the link though, but maybe you don't
need it to)
Michal.