I\'m trying to build a form, with formtastic, inside an active_admin model. The problem is I need a certain script tag and other raw HTML stuff directly inside or around the
You can insert a div or javascript like this:
f.form_buffers.last << content_tag(:div, "Div content here") f.form_buffers.last << javascript_tag("alert('hi');")