I want to pull a query string from the URL and use the value as the default value for a text question. The value is coming from an internal site.
I have created and set an embedded data element (working fine) but cannot get the value to show in the response text box.
I tried a few things after setting GRP_ID variable to the embedded data:
jQuery(this).val(GRP_ID) ;
jQuery("#QR\\~"+this.questionId).val(GRP_ID) ;
questionId.setCodeValue(1,GRP_ID) ;
What is the proper syntax to refer to and set the text box value?