strange that this is actually retuning values on ie6/7 and not throwing
errors.
you need to extend the target before using the mootools methods, because
e.target is not extended for performance reasons.
use:
$(e.target).get('action');
if it still doesnt work, try:
e.target.getAttribute('action', 2);
--
Fábio Miranda Costa
Solucione Sistemas
Engenheiro de interface
On Sun, Oct 25, 2009 at 11:22 PM, rutherford <[email protected]>wrote:
>
> (from page http://domain.com/home/):
>
> <form action="save"....
>
>
> ...'url' prop of Request.HTML ajax call in mootools event...
> url: e.target.get('action')
>
> FF, chrome return 'save' but IE returns 'home/save'
>
> how can I force IE to return 'save'?