We've used this method a few times now but for some reason we can't get it to work now. We are using this code: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css"> input { padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; width: 200px; display: block; } </style> </head> <body> <form id="mktoForm_0025"> </form> <script src="//app-lon03.marketo.com/js/forms2/js/forms2.min.js"></script> <form id="mktoForm_0025" style="display:none"></form> <script src=" https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js "></script> <script> var myForm = MktoForms2.allForms()[0]; myForm.addHiddenFields({ 'Email' : " test@testing12345.com ", "FirstName' : "John Doe" }); myForm.submit(); </script> </body> </htm Not sure what the google api is doing but is this causing a conflict within the system?
... View more