From: Sam Williams Date: 2005-05-05T08:40:14+09:00 Subject: rails+ajax slowness in IE I'm trying out a very simple bit of Ajax using the Rails helper. While it works just fine in Firefox, it takes about 30 seconds for it to work in IE6. Any ideas? Starting with a fresh Rails app, I've added the following: --------------------------------------------------- index_controller.rb: --------------------------------------------------- class IndexController < ApplicationController def index end def ajax render_text "an ajax result!" end end --------------------------------------------------- index.rhtml: --------------------------------------------------- <%= javascript_include_tag "prototype" %> <%= link_to_remote "do some ajax", :url=>{ :controller=>"index", :action=>"ajax" }, :update=>"results" %>
nothing yet