Its working now out of no where. Maybe it was a weird cache thing.
So in development the form would get served like
<form id="new_contact_message" class="simple_form new_contact_message" action="/contact_messages" method="post" accept-charset="UTF-8">
Then in production it got served like
<form id="new_contact_message" class="simple_form new_contact_message" action method="post" accept-charset="UTF-8">
In the view I rendered with
<%= raw @page.content %>
The entry in the databases where exactly the same when I tested both of them in the console.
Its just when I made the request it ended up with an empty action attribute. I was wondering if any one had any insights into this pertaining to where in the stack it was likely that the action attribute was doped.
I did copy and past from one TinyMCE window to another and I noticed that it carried with
<form id="new_contact_message" class="simple_form new_contact_message" action="http://localhost/contact_messages" method="post" accept-charset="UTF-8">
I didn't notice before I tried it once and went back and examined it and removed the http://localhost at the database. Once I did that that's when the action attribute started coming up blank.
Then like I said I loaded it in a new browser and it started working in both browsers.
I was viewing the page in google chrome running on Ubuntu 12.04
Thank you I know its not a big deal but I like learning why things happen it helps me conceptualize more.
Last edited by tyger86 (2012-10-15 21:02:00)