Lead Capture Tools

Jice-Lavocat
Participante | Parceiro Platinum
Participante | Parceiro Platinum

Set form field value with Jquery not working

resolver

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 Avaliação positiva
1 Solução aceita
Jice-Lavocat
Solução
Participante | Parceiro Platinum
Participante | Parceiro Platinum

Set form field value with Jquery not working

resolver

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

Exibir solução no post original

5 Respostas 5
btfrost
Membro

Set form field value with Jquery not working

resolver

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

 

input.value = value;
input.dispatchEvent(new Event('input', { bubbles: true }));
PamCotton
Gerente da Comunidade
Gerente da Comunidade

Set form field value with Jquery not working

resolver

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 Avaliação positiva
Derek_Gervais
Alunos da HubSpot
Alunos da HubSpot

Set form field value with Jquery not working

resolver

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 Avaliação positiva
Jice-Lavocat
Solução
Participante | Parceiro Platinum
Participante | Parceiro Platinum

Set form field value with Jquery not working

resolver

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
Alunos da HubSpot
Alunos da HubSpot

Set form field value with Jquery not working

resolver

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

0 Avaliação positiva