Hello,
I'm trying to hide some fields on our support form and automatically pre-fill them with the desired values. I found an article that explains how to do this with system fields like Subject and Description, but I'm having trouble pre-filling a custom drop down field. I was able to hide the field with the following code:
$(document).ready(function() {
$(".request_custom_fields_360024163811").hide();
});
But I can't figure out the proper syntax for pre-filling this field. I tried the following code but it is not working:
$('#request_custom_fields_360024163811').val('Equipment Request'); // autofill category
An you help me to figure out the correct syntax to pre-fill this field with one of the existing drop down values?
Thank you,
Doug Shaner