This is one of those situations where I feel like I\'m missing a crucial keyword to find the answer on Google...
I have a bag of parameters and I want to make the br
FYI for anyone doing the doPost for rails 3, you need to add in the CSRF token, Adding the following to the answer should do that...
var token = $('meta[name="csrf-token"]').attr('content'); $("").appendTo($form);