How can I print with console.log the values I capture in a FormData before sending it to a service by URL? .
I was trying this way:
e.preventDefault();
var form = $('#frmSede')[0];
var formdata = new FormData(form);
var oEstado = new FormData(document.forms.namedItem("estado"));
console.log("El estado es: " + oEstado);
And the deveploment tools console throws me this: The status is:
[object FormData]
I need to know what values I need to add a logic before passing it to my service.