Hello, I implemented this simple form_remote_tag, for testing in rails: <% form_remote_tag :url => { :controller => ''login'', :action => :''change_user'' }, :update => ''specified_user'' do -%> <div><%= text_field_tag ''user_id'' %></div> <div><%= submit_tag ''change user'' %></div> <% end -%> which produces this javascript: <form action="/login/change_user" method="post" onsubmit="new Ajax.Updater(''specified_user'', ''/login/change_user'', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;"> <div><input id="user_id" name="user_id" type="text" /></div> <div><input name="commit" type="submit" value="change user" /></div> </form> apparently IE 5.5 does correctly handle Form.serialize(this) so nothing is send. any ideas if I do something wrong or should I just not support IE 5.5. users from now on - which is probably not the worst idea... thanks Björn --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Most people do not support IE5.x anymore unless they are working in an environment that explicitly states that it must be supported. If you are just *trying* to support IE because you''re a good developer, I wouldn''t worry about it too much. It''s a very, very small percentage we''re talking about here, for most websites. -justin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
tanks for the reply... I guess I will just go without supporting IE 5.x from now on... björn --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---