I''m having some difficulty with IE8 on a Rails 2.3.5 app. I''ll state from the outset that this problem does not occur with Firefox, Chrome, or Opera when run on the same system so I''m reasonably certain I''ve got an IE issue here. Here''s a simple description: I''m ending a Users#new form with: <p><%= submit_tag, "Sign Up", :disable_with "Patience..." %></ p> When I tail the development.log I never see this action get posted to the server. If I use any of the other browsers, the action completes just fine. I am using the :disable_with "Patience..." option throughout my application, for example: Sessions#new completes with: <p><%= submit_tag, "Login", :disable_with "Patience..." %></ p> This action completes just fine so I assume I''m not having a submit_tag / :disable_with problem. One additional inconsistancy I''ve noticed is, when using IE: Users#new "Sign Up" requires two clicks to get the greyed "Patience..." to appear. Sessions#new "Login" goes to greyed "Patience..." on the first click. Any help would be much appreciated here. thanks in advance, Rick -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 30 November 2010 19:06, Rick <richard.t.lloyd-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I''m having some difficulty with IE8 on a Rails 2.3.5 app. I''ll state > from the outset that this problem does not occur with Firefox, Chrome, > or Opera when run on the same system so I''m reasonably certain I''ve > got an IE issue here.The first thing I would advise is to check that the html is fully valid. Paste the whole of the page html (from View, Page Source or similar in your browser) into the w3c html validation site (google will find it). If fixing any errors there does not fix it then try loading the page in firefox with firebug active and clicking the link. This may show an error. Colin -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Nov 30, 3:12 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 30 November 2010 19:06, Rick <richard.t.ll...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > I''m having some difficulty with IE8 on a Rails 2.3.5 app. I''ll state > > from the outset that this problem does not occur with Firefox, Chrome, > > or Opera when run on the same system so I''m reasonably certain I''ve > > got an IE issue here. > > The first thing I would advise is to check that the html is fully > valid. Paste the whole of the page html (from View, Page Source or > similar in your browser) into the w3c html validation site (google > will find it). > > If fixing any errors there does not fix it then try loading the page > in firefox with firebug active and clicking the link. This may show > an error. > > ColinColin, Spot on, html error that passed the other 3 browsers but not IE. thanks again, Rick -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.