We integrate a third-party app, using a javascript code that we need to send an email and name.
This email and name come from a previous step registration form.
Because we need to print on the page that email and name we encode it.
some.survey({
email: "test@test.pt",
name: "Mon & Sons",
properties: {"one":"123","two":"345"}
});
The issue is that the third party before printing is encoding again our string, showing in the browser like: "Mon & Sons"
.
Does anyone know how to get around this?