I'm trying to open a new url in an ajax window. I'm using prototype-window (http://prototype-window.xilinus.com/samples.html), and keep getting this error
Prototype.Browser has no properties
Here are some snipets from my app code
//layout/default.rhtml <= javascript_include_tag :defaults %> <= javascript_include_tag 'window' > <= javascript_include_tag 'window_effects' > <= stylesheet_link_tag 'spread' %>
//index.rhtml <%= link_to_remote 'pop', :url => {:action => 'do_magic'} %>
//do_magic.rjs page << "var win = new Window({className: 'spread', title: 'Ruby on Rails', top:70, left:100, width:300, height:200, url:'http://www.rubyonrails.org/', showEffectOptions:{duration:1.5}})" page << "win.show();"
Does anyone know how I can get this working?