I would like to update a text field within a webform with a variable from the url query string using javascript.
I do not have access to target the form id or name, only the field id and name
Example url: www.xyz.com?name=Chris
Example form code:
<form method="post">
<input type="text" name="Name" id="Name">
<input type="submit" value="Submit">
</form>
Appreciate the help Regards, Chris