Embedded Form submission & redirect URL based on form parameters

@jkeough78 The issue you’re having is that HubSpts onFormReady() local callbacks require jQuery to function (I am aware this is a bit annoying).

If you open up your JS console in chrome and submit the form you’ll see the following exception being thrown:
The onFormSubmit function in hbspt.forms.create requires jQuery. It was not run.

You’d need to ensure you load jQuery - or polyfill the method HubSpot is looking for in its forms.js script to get those local callbacks to work.

There are ways to do this with the global callbacks that utilize the window.postMessage API - but it involves more custom javascript due to not having jQuery available for a better API to grab the field values easily.