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);
}
});

PostgreSQL in Docker: when DBeaver lies (and psql saves the day)
SharePoint onPrem: Create ContentType with the specific ID
Send props from Child class component to Parent state component in React App