Observe_field not working in Safari

I setup an observe_field and it works great in firefox, but there is not
response in Safari.

Here is the code that works perfect in firefox:

Email Address: <%= f.text_field :email_address, :class => 'inputText', :id => :account_login %>

<%= observe_field :account_login, :url => { :action => :account_login
},
:frequency => 0.25,
:update => :account_login,
:with => ‘email_address’
%>

Any ideas?

On 26 Feb 2008, at 22:02, Jimmy P. wrote:

:account_login %>

You’ve got 2 things on the page with id account_login, that could
quite legitimately confuse safari (ie perhaps it is trying to observe
changes on the div)

Fred

Frederick C. wrote:

On 26 Feb 2008, at 22:02, Jimmy P. wrote:

:account_login %>

You’ve got 2 things on the page with id account_login, that could
quite legitimately confuse safari (ie perhaps it is trying to observe
changes on the div)

Fred

Fred…you’re a genius. :slight_smile:

i miss those subtleties sometimes.

thanks for your help