I'm using observe_field on a 'select' and it works beautifully in FF and Safari. It doesn't work at all in IE7.
Here's a snippet:
<%= f.select :project_id, addresses_array %>
<%= observe_field 'listing_project_id', :update => :address, :with => :listing_project_id, :on => "onselect", :url => { :action => :find_address } %>
<div id="address"> </div>
Any ideas why it doesn't work in IE7? I've google'd a lot and there don't seem to be much talk about this which leads me to believe I might being doing it wrong. I'm using Rails 2.1.0.
Thanks for the help!
-scott