I have the following URL: http://localhost:8888/datatest?username=JD042719
I want to pull in the "JD042719"
.
This problem does not require a 'Get' request.
Then the username value should be set to the value of another text box. Perhaps something like this:
HTML
<label for="Assoc">Associate ID</label>
<input type="text" name="AssocID" id="AssocID" required="required">
JavaScript
$(function associd(){
document.getElementById("AssocID").value=username;
});