Skip to content
Snippets Groups Projects
Commit 370c7171 authored by Brett Bieber's avatar Brett Bieber
Browse files

Properly quote attribute value in selector

parent e78fff20
Branches
No related tags found
No related merge requests found
......@@ -414,7 +414,7 @@
$("form select[name=form_data_profile_role] option[value='Friend of the University']").attr('selected','selected');
break;
}
$('form select[name=form_data_profile_role] option[value='+unlrole+']').attr('selected','selected');
$('form select[name=form_data_profile_role] option[value="'+unlrole+'"]').attr('selected','selected');
/********* College selector */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment