Set option 'selected' in select form by text using jQuery
The code below is my solution in creating a custom SharePoint List form. The list has a lookup column, the column is filled with Name (Fullnames) of employees. The task is to mark option with user Name as selected. Variable 'user' is equal to Name of employee.
The Javascript with jQuery code below:
$("select[title='Coach'] option").each(function() {
if($(this).text() == user) {
$(this).prop('selected', true);
}
});
Custom Label with multiple styles in TextField of Fluent UI
First impressions after using the new SPFX 1.22.2 with Heft
Changing the Runtime Environment for an Azure App Service