[Progress Communities] [Progress OpenEdge ABL] Forum Post: Issue in Marketo Connector Services

  • Thread starter Thread starter shikha.maniyar@cygnetinfotech.com
  • Start date Start date
Status
Not open for further replies.
S

shikha.maniyar@cygnetinfotech.com

Guest
Hi, We have integrated Marketo connector with sitefinity 10.1. We configure them with SOAP API. Now, while upgrading jQuery in frontend from 1.12.3 to 3.4.0 causing an error which is thrown by WebResources.axd and the error we got is "jQuery(...).unload is not a function", which is returned by marketo services. This issue is occurred in below script: MarketoSubmitScript = { _settings: null, _formFields: null, _submittedSitefinityForm: null, _explicitlyProvidedSitefinityFormId: null, _sitefinityFormValidationCompletedDelegate: null, _documentReadyDelegate: null, /* --------------------------------- set up and tear down ---------------------------- */ load: function (settings, formManagerFieldId) { if (typeof jQuery !== "undefined") { this._settings = settings; this._documentReadyDelegate = jQuery.proxy(function () { var that = this; setTimeout(function () { that._documentReadyHandler(); }, 1); }, this); // Prevent memory leaks jQuery(this).unload(function () { jQuery.event.remove(this); jQuery.removeData(this); if (this._documentReadyDelegate) { delete this._documentReadyDelegate; } }); jQuery(document).ready(this._documentReadyDelegate); } }, We get the old jQuery functions and responses from marketing SOAP API response. Because of this we are not being able to integrate marketo to Sitefinity successfully.

Continue reading...
 
Status
Not open for further replies.
Back
Top