I'm looking to use render like so:
render :action => 'page#form'
I also tried this:
render :template => 'site/page#form'
That didn't work either. The form on this particular page is at the very bottom, and if any errors occur on submission I'd hate for the user to be defaulted to the top of the page. I also need to use render (not redirect) because I need to retain the objects and their errors.
How can I render to target a specific anchor tag?