Is it possible to autopopulate a textbox on a page depending on a string passed in with the URL. For example:
Say we have the following form:
<form name="form_reservation" id="form-reservation">
<div style="padding:10px 20px 10px 10px;">
<label for="reservation-id">Reservation ID</label>
<input name="reservation_id" id="reservation-id" class="reservationid" style="width:120px !important"/>
<div style="padding:5px 20px 0px 10px;" class="res_message" id="res-message"> </div>
<input type="submit" class="button" value="Search Reservation" name="search_button" style="width:150px !important; margin:10px 0px 0px 5px;"/>
<input type="button" class="button" value="Clear" style="width:150px !important; margin:10px 0px 0px 5px;" onclick="resetForms('reservation')" />
</div>
</form>
And the user received an email with a link in it: www.website.com/formpage.html######
Where ###### was the ID that I wanted to populate in the reservation-id field on the form. Any way to make this happen?
formpage.html#1234or likeformpage.html?id=1234?