In my request form, I have custom field orderno
.
I want to concatenate the orderno
with subject (that will be Ticket's Title).
Currently I have hide the subject field with jquery script and set some default value.
$('.form-field.string.required.request_subject').hide(); //hide subject
$('#request_subject').val('Insurance new request no:');
What I want to achieve is when user submit the request form the order no which is enter by user should be included in subject.
e.g. orderno= 12124 subject should be like "Insurance new request no:12124"
Is this possible ? or what can be best alternate for this