Hey all, I''m trying to update a div everytime the value of my textbox is changed: here is _form.rhtml: <p><label for="bookmark_address">Address</label><br/> <%= text_field ''bookmark'', ''address'' , :size => 120 %></p> <div id="ajaxtitle"> <%= render :partial => ''bookmarktitle'' %> </div> <%= observe_field ''bookmark_address'',:frequency => 0.5, :update => ''ajaxtitle'', :url => {:action => ''bookmarkaddress'' }, :with => "''url='' + bookmark_address.value" %> and this is the updated part _bookmarktitle.rhtml: <p><label for="bookmark_title">Title</label><br/> <%= text_field ''bookmark'', ''title'' , :value=>@title, :size => 120 %></p> the function bookmarktitle: def bookmarkaddress @title = "test value" end However when I modify champ bookmark_address, nothing happens. Any idea what''s wrong in my code? Thanx in advance Pat -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---