diff --git a/formsutils.js b/formsutils.js index 4e38a62..6844537 100644 --- a/formsutils.js +++ b/formsutils.js @@ -7,8 +7,8 @@ function fillI18nForm(name_form, i18n_object) { const [key, value] = entry; - //$('#'+name_form+'_form_'+key+'_form').val(value); - document.getElementById(name_form+'_form_'+key+'_form').value=value; + $('#'+name_form+'_form_'+key+'_form').val(value); + //document.getElementById(name_form+'_form_'+key+'_form').value=value; });