Hello, I have this code in ruby on rails view (.html.erb):
<%= text_field :poll, :option3_text, :size => 20, :class => 'topicField' %> Which translates in HTML code to: <input id="poll_option3_text" class="topicField" type="text" size="20" name="poll[option3_text]"/> When I print the parameters passed from the browser inside Ruby console, it prints correctly when using FireFox but it doesn't pass it at all with IE. For instance, FireFox prints params (puts params) as: .....option3_textTHE_OPTION_3_VALUE...... While IE doesn't even have option3_text in it's parameters list. Any ideas, Thanks, Tam -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" 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/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

