I''m struggling trying to figure out how to add an element id field to a form_remote_tag (ie - id="element_7". Anyone know how do this? Thanks, Derek
On May 7, 2005, at 9:07 AM, Derek Haynes wrote:> I''m struggling trying to figure out how to add an element id field to > a form_remote_tag (ie - id="element_7".you can add an id and any other html attribute to a form_remote_tag by adding a line like this: :html => { :id => "element_7" } along with the normal :url, :update, etc... toby