There is a js file where i have:
var formString="<form action=\"" + location + "\" method=\"POST\"
id=\"submitform\">";
somehow in browser when i look on the js file i see
var formString="<form action=https://www.acceptance.test.br/submission/eforms/js/\""
+ location + "\" method=\"POST\" id=\"submitform\">";
so it is added to the source code js the server url.
Any idea what might be the problem?
Thanks
Looks like your serverside code is not set up correctly and injects stuff into the stream.
You probably need to split you action so the auto insertion stuff does not effect it.