I am getting "
I have a simple form where I am trying to assign a field value using java script . In the form setting I have custom javascript includes as "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"
For the field I have Store Client ID in JavaScript variable = Yes ,
Client ID JavaScript variable name = temp
Then I have a javascript button with client click = NWF$(document).ready(function(){ NWF$("#"+temp).val("Text"); )}
So when I click the button , I am getting this error. If I write alert("test") for the cleint click it works.Also if I remove the NWF$(document).ready(function() , it gives the same error . Am I missing anything ?