Cross-origin problem ssl error of https

Hi @kaushikktiwari, thanks for your post. It looks like there is a custom code script for growsurf that is being loaded which is trying to do some ajax requests.

The Cross Origin problem can be seen in the browser console:

That error is happening because CORS is not enabled and the script originates on some other domain than your own.

At the moment Webflow does not support CORS so you would need to either host the script on the same domain or look for alternatives.

One possible solution would be to use a third party service, here is one report of a solution that worked: Cross-Origin Read Blocking (CORB) - #2 by myonke

In the page design, I would also check to make sure there are no other page elements with a higher zindex than the form submit button, a good test is to put the form just under the body, then republish and check to see if the submit button works. That is related to the design, not the cors issue.

I hope this helps.