Lead Capture Tools

Jice-Lavocat
Participant | Platinum Partner
Participant | Platinum Partner

Set form field value with Jquery not working

SOLVE

Hi there,

 

I'm trying to prepopulate a field on a HS form with JQuery (everything lives on a Vue app).

 

I have read a topic that explicitely says that the value change should be chained with a ".change()" method.

I've done that and, for debug puposes, I'm pre-populating the form on "hsFormCallback[onFormReady]" event. So that when I launch the page, the field is populated with my value. So far so good. Here is the code I'm using :

 

 

var score_global = $("input[name='score_global']");

score_global.val(123).trigger('change');

 

 

However, when I enter some text, in any other field available on the form, the prepopulated value disappears. It seems as if the hsforms script doesn't refresh with the trigger('change') (it does the same if I use .change() instead).

Can anyone guide me here, I don't know what to attempt now?

0 Upvotes
1 Accepted solution
Jice-Lavocat
Solution
Participant | Platinum Partner
Participant | Platinum Partner

Set form field value with Jquery not working

SOLVE

Hi @Derek_Gervais ,

 

I eventually managed to fix the problem. The issue originates from a depency issue on JQuery for the hubspot form.js script.

 

To fix that in my Vue.Js app, I had to add the following lines.

 

// Needed by Vue.JS for using Jquery inside the app
import JQuery from 'jquery'
let $ = JQuery

// Needed by Hubspot Form.js
window.jQuery = window.jQuery || JQuery

View solution in original post

5 Replies 5
btfrost
Member

Set form field value with Jquery not working

SOLVE

If anyone's interested in solving this without jquery...

 

input.value = value;
input.dispatchEvent(new Event('input', { bubbles: true }));
PamCotton
Community Manager
Community Manager

Set form field value with Jquery not working

SOLVE

Hey @btfrost  thank you for sharing!

 

Pam

Você sabia que a Comunidade está disponível em outros idiomas?
Participe de conversas regionais, alterando suas configurações de idioma !


Did you know that the Community is available in other languages?
Join regional conversations by changing your language settings !




0 Upvotes
Derek_Gervais
HubSpot Alumni
HubSpot Alumni

Set form field value with Jquery not working

SOLVE

Hey @Jice-Lavocat ,

 

I'm having trouble replicating this behavior in my own account. Can you give me a link to the page in question so that I can take a closer look?

0 Upvotes
Jice-Lavocat
Solution
Participant | Platinum Partner
Participant | Platinum Partner

Set form field value with Jquery not working

SOLVE

Hi @Derek_Gervais ,

 

I eventually managed to fix the problem. The issue originates from a depency issue on JQuery for the hubspot form.js script.

 

To fix that in my Vue.Js app, I had to add the following lines.

 

// Needed by Vue.JS for using Jquery inside the app
import JQuery from 'jquery'
let $ = JQuery

// Needed by Hubspot Form.js
window.jQuery = window.jQuery || JQuery
Derek_Gervais
HubSpot Alumni
HubSpot Alumni

Set form field value with Jquery not working

SOLVE

That's awesome, thanks for posting your solution here!

0 Upvotes