Hi All,
I'm seeking assistance on how to autopopulate the description box based on the value of a particular custom field. This for when an end user submits a form.
The custom field is a drop-down menu containing only 2 options
The Description box has been hidden to let us customise the ticket description.
This is my current code so far:
$('.form-field.request_description').hide();
if ($("#request_custom_fields_360025027158")=="OPTION A") {
$('#request_description').val('Description 1');}
else
{$('#request_description').val('Description 2');}
Any and all assistance would be appreciated.

Thanks for your feedback.
This is not currently possible. As a workaround, you can use conditional fields.
Creating conditional ticket fields
When an end user selects a value from the field support issue. Then the system can show a different type of fields to request different information from each value in that field.
For example:
If user selects support issue = "document upload" then show the following fields: Do you attach your documents? (yes / no)
I hope it helps.