Hi,
I am having trouble trying to get all my form data and break it down for debugging. I just want to replace the "&" with a new line.
var formData = $("#customer_details_form").serialize();
var debugData = formData.text().replace(/&/g,'\n');
Thanks